about summary refs log tree commit diff
path: root/pkgs/development/python-modules/units
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2019-05-20 09:30:05 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2019-05-20 09:30:05 -0400
commit9856c9eb9b5a33e6392c21256ad996f601b146a1 (patch)
tree3325127151a12863d78641d6493acc62f5170e95 /pkgs/development/python-modules/units
parente94d85737383ccbb6e221945646dce4551190e1d (diff)
downloadnixlib-9856c9eb9b5a33e6392c21256ad996f601b146a1.tar
nixlib-9856c9eb9b5a33e6392c21256ad996f601b146a1.tar.gz
nixlib-9856c9eb9b5a33e6392c21256ad996f601b146a1.tar.bz2
nixlib-9856c9eb9b5a33e6392c21256ad996f601b146a1.tar.lz
nixlib-9856c9eb9b5a33e6392c21256ad996f601b146a1.tar.xz
nixlib-9856c9eb9b5a33e6392c21256ad996f601b146a1.tar.zst
nixlib-9856c9eb9b5a33e6392c21256ad996f601b146a1.zip
pythonPackages.units: init at 0.07
Diffstat (limited to 'pkgs/development/python-modules/units')
-rw-r--r--pkgs/development/python-modules/units/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/units/default.nix b/pkgs/development/python-modules/units/default.nix
new file mode 100644
index 000000000000..02a3fc940aee
--- /dev/null
+++ b/pkgs/development/python-modules/units/default.nix
@@ -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 ];
+  };
+}