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