2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytest, future, numpy }:
|
2017-09-14 18:15:06 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "MDP";
|
2020-06-06 07:47:18 +01:00
|
|
|
version = "3.6";
|
2017-09-14 18:15:06 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:18 +01:00
|
|
|
sha256 = "ac52a652ccbaed1857ff1209862f03bf9b06d093b12606fb410787da3aa65a0e";
|
2017-09-14 18:15:06 +01:00
|
|
|
};
|
|
|
|
|
2018-01-20 11:59:03 +00:00
|
|
|
checkInputs = [ pytest ];
|
2017-09-14 18:15:06 +01:00
|
|
|
propagatedBuildInputs = [ future numpy ];
|
|
|
|
|
|
|
|
# Tests disabled because of missing dependencies not in nix
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-14 18:15:06 +01:00
|
|
|
description = "Library for building complex data processing software by combining widely used machine learning algorithms";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://mdp-toolkit.sourceforge.net";
|
2017-09-14 18:15:06 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ nico202 ];
|
|
|
|
};
|
|
|
|
}
|