Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / nimfa / default.nix
blob3f6e521047ab6839256c346f9f363007e4328b43
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , numpy
6 , scipy
7 , matplotlib
8 , pytest
9 }:
11 buildPythonPackage rec {
12   pname = "nimfa";
13   version = "1.4.0";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "39cff2b86856d03ca8a3d9c38598034ecf1a768c325fd3a728bb9eadb8c6b919";
18   };
20   propagatedBuildInputs = [ numpy scipy ];
21   nativeCheckInputs = [ matplotlib pytest ];
22   doCheck = !isPy3k;  # https://github.com/marinkaz/nimfa/issues/42
24   meta = with lib; {
25     description = "Nonnegative matrix factorization library";
26     homepage = "http://nimfa.biolab.si";
27     license = licenses.bsd3;
28     maintainers = with maintainers; [ ashgillman ];
29   };