pythonPackages.measurement: init at 2.0.1

This commit is contained in:
Benjamin Hipple 2019-07-07 15:09:17 -04:00
parent ecc48146da
commit 34f31030b1
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, fetchPypi, buildPythonPackage, pbr, six, sympy }:
buildPythonPackage rec {
pname = "measurement";
version = "2.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "36ca385ffdccf140a75a7e1d816a4df97a6dd255f16fd2f53dd7ab43632a8835";
};
propagatedBuildInputs = [ pbr six sympy ];
meta = with lib; {
description = "Use and manipulate unit-aware measurement objects in Python";
homepage = https://github.com/coddingtonbear/python-measurement;
license = licenses.mit;
maintainers = with maintainers; [ bhipple ];
};
}

View File

@ -2454,6 +2454,8 @@ in {
python-mapnik = callPackage ../development/python-modules/python-mapnik { };
measurement = callPackage ../development/python-modules/measurement {};
midiutil = callPackage ../development/python-modules/midiutil {};
misaka = callPackage ../development/python-modules/misaka {};