mdp: disable tests
This commit is contained in:
parent
47e1751fd0
commit
140136ad95
2 changed files with 26 additions and 21 deletions
25
pkgs/development/python-modules/mdp/default.nix
Normal file
25
pkgs/development/python-modules/mdp/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3626,27 +3626,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
MDP = buildPythonPackage rec {
|
MDP = callPackage ../development/python-modules/mdp {};
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
minidb = buildPythonPackage rec {
|
minidb = buildPythonPackage rec {
|
||||||
name = "minidb-2.0.1";
|
name = "minidb-2.0.1";
|
||||||
|
|
Loading…
Reference in a new issue