mdp: disable tests

This commit is contained in:
Samuel Leathers 2017-09-14 13:15:06 -04:00 committed by Frederik Rietdijk
parent 47e1751fd0
commit 140136ad95
2 changed files with 26 additions and 21 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest_29, future, numpy }:
buildPythonPackage rec {
pname = "MDP";
version = "3.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k";
};
checkInputs = [ pytest_29 ];
propagatedBuildInputs = [ future numpy ];
# Tests disabled because of missing dependencies not in nix
doCheck = false;
meta = with stdenv.lib; {
description = "Library for building complex data processing software by combining widely used machine learning algorithms";
homepage = http://mdp-toolkit.sourceforge.net;
license = licenses.bsd3;
maintainers = with maintainers; [ nico202 ];
};
}

View file

@ -3626,27 +3626,7 @@ in {
};
};
MDP = buildPythonPackage rec {
version = "3.5";
name = "MDP-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/M/MDP/${name}.tar.gz";
sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k";
};
buildInputs = with self; [ pytest_29 ];
propagatedBuildInputs = with self; [ future numpy ];
doCheck = true;
meta = {
description = "Library for building complex data processing software by combining widely used machine learning algorithms";
homepage = http://mdp-toolkit.sourceforge.net;
license = licenses.bsd3;
maintainers = with maintainers; [ nico202 ];
};
};
MDP = callPackage ../development/python-modules/mdp {};
minidb = buildPythonPackage rec {
name = "minidb-2.0.1";