nixpkgs/pkgs/development/python-modules/mdp/default.nix

25 lines
702 B
Nix
Raw Normal View History

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