summary refs log tree commit diff
path: root/pkgs/development/python-modules/numericalunits/default.nix
diff options
context:
space:
mode:
authorRobert Schütz <rschuetz17@gmail.com>2018-10-31 17:23:30 +0100
committerGitHub <noreply@github.com>2018-10-31 17:23:30 +0100
commite0772e6ef81a0f0f478f42d0b4bc055abe1bfffc (patch)
treeb3c8b03624c2b78b5a2e544537f68d79767268ce /pkgs/development/python-modules/numericalunits/default.nix
parent553e0d81ee263d35e761987c92b6fb8e289ca32f (diff)
parent1ac9d8ea407dc7262cdb5acdf290bd3a26f536c8 (diff)
downloadnixlib-e0772e6ef81a0f0f478f42d0b4bc055abe1bfffc.tar
nixlib-e0772e6ef81a0f0f478f42d0b4bc055abe1bfffc.tar.gz
nixlib-e0772e6ef81a0f0f478f42d0b4bc055abe1bfffc.tar.bz2
nixlib-e0772e6ef81a0f0f478f42d0b4bc055abe1bfffc.tar.lz
nixlib-e0772e6ef81a0f0f478f42d0b4bc055abe1bfffc.tar.xz
nixlib-e0772e6ef81a0f0f478f42d0b4bc055abe1bfffc.tar.zst
nixlib-e0772e6ef81a0f0f478f42d0b4bc055abe1bfffc.zip
Merge pull request #48183 from costrouc/costrouc/python-atomman
pythonPackages.atomman: init at 1.2.3
Diffstat (limited to 'pkgs/development/python-modules/numericalunits/default.nix')
-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 ];
+  };
+}