forked from mirrors/nixpkgs
uncertainties: 3.1.2 -> 3.1.4
This commit is contained in:
parent
5443325ce6
commit
5718d1927b
|
@ -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 a new issue