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 ];
};
}