1{ stdenv, buildPythonPackage, fetchPypi, pytest, future, numpy }:
2
3buildPythonPackage rec {
4 pname = "MDP";
5 version = "3.6";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "ac52a652ccbaed1857ff1209862f03bf9b06d093b12606fb410787da3aa65a0e";
10 };
11
12 checkInputs = [ pytest ];
13 propagatedBuildInputs = [ future numpy ];
14
15 # Tests disabled because of missing dependencies not in nix
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 description = "Library for building complex data processing software by combining widely used machine learning algorithms";
20 homepage = "http://mdp-toolkit.sourceforge.net";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ nico202 ];
23 };
24}