3
0
Fork 0
forked from mirrors/nixpkgs

uncertainties: 3.1.2 -> 3.1.4

This commit is contained in:
rnhmjoj 2020-07-14 20:46:47 +02:00
parent 5443325ce6
commit 5718d1927b
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450

View file

@ -1,18 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage, nose, numpy }:
{ stdenv, fetchPypi, buildPythonPackage
, nose, numpy, future
}:
buildPythonPackage rec {
pname = "uncertainties";
version = "3.1.2";
version = "3.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "07kahmr0vfmncf8y4x6ldjrghnd4gsf0fwykgjj5ijvqi9xc21xs";
sha256 = "0s69kdhl8vhqazhxqdvb06l83x0iqdm0yr4vp3p52alzi6a8lm33";
};
buildInputs = [ nose numpy ];
propagatedBuildInputs = [ future ];
checkInputs = [ nose numpy ];
# No tests included
doCheck = false;
checkPhase = "python setup.py nosetests -sv";
meta = with stdenv.lib; {
homepage = "https://pythonhosted.org/uncertainties/";