mdp: disable tests
This commit is contained in:
committed by
Frederik Rietdijk
parent
47e1751fd0
commit
140136ad95
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user