summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-10 18:13:07 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 13:38:59 -0400
commit0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a (patch)
tree08f37b7d21bd58129244052851d960477251b805 /pkgs/development/python-modules
parentf129ed25a04090e5427efd3200101ca47c1b002d (diff)
downloadnixlib-0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a.tar
nixlib-0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a.tar.gz
nixlib-0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a.tar.bz2
nixlib-0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a.tar.lz
nixlib-0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a.tar.xz
nixlib-0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a.tar.zst
nixlib-0cf2c6fcfe2055a255b0f20eb122ebecc68dbf4a.zip
pythonPackages.numericalunits: init at 1.16
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/numericalunits/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/numericalunits/default.nix b/pkgs/development/python-modules/numericalunits/default.nix
new file mode 100644
index 000000000000..1212bf0039c9
--- /dev/null
+++ b/pkgs/development/python-modules/numericalunits/default.nix
@@ -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 ];
+  };
+}