Skip to content

Commit

Permalink
mdp: disable tests
Browse files Browse the repository at this point in the history
(cherry picked from commit 140136a)
  • Loading branch information
Samuel Leathers authored and FRidh committed Sep 15, 2017
1 parent 01aafc6 commit 8067485
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 21 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/python-modules/mdp/default.nix
@@ -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 ];
};
}
22 changes: 1 addition & 21 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -3622,27 +3622,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";
Expand Down

0 comments on commit 8067485

Please sign in to comment.