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 {
|
||||
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/";
|
||||
|
Loading…
Reference in New Issue
Block a user