Merge pull request #93137 from rnhmjoj/uncertain

uncertainties: 3.1.2 -> 3.1.4
This commit is contained in:
Michele Guerini Rocco 2020-07-15 09:19:58 +02:00 committed by GitHub
commit 661ebced1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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/";