pythonPackages.nimfa: Follow conventions.
This commit is contained in:
parent
b9e126d2d1
commit
b6d615ff7e
@ -1,6 +1,7 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
, numpy
|
, numpy
|
||||||
, scipy
|
, scipy
|
||||||
, matplotlib
|
, matplotlib
|
||||||
@ -8,7 +9,6 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
name = "${pname}-${version}";
|
|
||||||
pname = "nimfa";
|
pname = "nimfa";
|
||||||
version = "1.3.1";
|
version = "1.3.1";
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy scipy ];
|
propagatedBuildInputs = [ numpy scipy ];
|
||||||
buildInputs = [ matplotlib pytest ];
|
checkInputs = [ matplotlib pytest ];
|
||||||
doCheck = false; # errors
|
doCheck = !isPy3k; # https://github.com/marinkaz/nimfa/issues/42
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Nonnegative matrix factorization library";
|
description = "Nonnegative matrix factorization library";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user