pythonPackages.nimfa: Follow conventions.

This commit is contained in:
Ashley Gillman 2018-01-17 10:56:19 +10:00
parent b9e126d2d1
commit b6d615ff7e

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, numpy
, scipy
, matplotlib
@ -8,7 +9,6 @@
}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "nimfa";
version = "1.3.1";
@ -18,8 +18,8 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ numpy scipy ];
buildInputs = [ matplotlib pytest ];
doCheck = false; # errors
checkInputs = [ matplotlib pytest ];
doCheck = !isPy3k; # https://github.com/marinkaz/nimfa/issues/42
meta = with stdenv.lib; {
description = "Nonnegative matrix factorization library";