1{ stdenv, buildPythonPackage, fetchPypi, pytest, future, numpy }:
2
3buildPythonPackage rec {
4 pname = "MDP";
5 version = "3.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k";
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}