Merge pull request #93137 from rnhmjoj/uncertain
uncertainties: 3.1.2 -> 3.1.4
This commit is contained in:
commit
661ebced1b
@ -1,18 +1,20 @@
|
|||||||
{ stdenv, fetchPypi, buildPythonPackage, nose, numpy }:
|
{ stdenv, fetchPypi, buildPythonPackage
|
||||||
|
, nose, numpy, future
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "uncertainties";
|
pname = "uncertainties";
|
||||||
version = "3.1.2";
|
version = "3.1.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "07kahmr0vfmncf8y4x6ldjrghnd4gsf0fwykgjj5ijvqi9xc21xs";
|
sha256 = "0s69kdhl8vhqazhxqdvb06l83x0iqdm0yr4vp3p52alzi6a8lm33";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ nose numpy ];
|
propagatedBuildInputs = [ future ];
|
||||||
|
checkInputs = [ nose numpy ];
|
||||||
|
|
||||||
# No tests included
|
checkPhase = "python setup.py nosetests -sv";
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://pythonhosted.org/uncertainties/";
|
homepage = "https://pythonhosted.org/uncertainties/";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user