pythonPackages.numericalunits: init at 1.16
This commit is contained in:
parent
f129ed25a0
commit
0cf2c6fcfe
24
pkgs/development/python-modules/numericalunits/default.nix
Normal file
24
pkgs/development/python-modules/numericalunits/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "1.16";
|
||||||
|
pname = "numericalunits";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "71ae8e236c7a223bccefffb670dca68be476dd63b7b9009641fc64099455da25";
|
||||||
|
};
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://pypi.python.org/pypi/numericalunits;
|
||||||
|
description = "A package that lets you define quantities with unit";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -428,6 +428,8 @@ in {
|
|||||||
|
|
||||||
nvchecker = callPackage ../development/python-modules/nvchecker { };
|
nvchecker = callPackage ../development/python-modules/nvchecker { };
|
||||||
|
|
||||||
|
numericalunits = callPackage ../development/python-modules/numericalunits { };
|
||||||
|
|
||||||
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
||||||
|
|
||||||
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
||||||
|
Loading…
Reference in New Issue
Block a user