pythonPackages.units: init at 0.07

This commit is contained in:
Chris Ostrouchov 2019-05-20 09:30:05 -04:00
parent e94d857373
commit 9856c9eb9b
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "units";
version = "0.07";
src = fetchPypi {
inherit pname version;
sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
};
meta = with lib; {
description = "Python support for quantities with units";
homepage = https://bitbucket.org/adonohue/units/;
license = licenses.psfl;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -4800,6 +4800,8 @@ in {
unidiff = callPackage ../development/python-modules/unidiff { };
units = callPackage ../development/python-modules/units { };
unittest2 = callPackage ../development/python-modules/unittest2 { };
unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };