summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAdam Beckmeyer <adam_git@thebeckmeyers.xyz>2016-11-14 16:28:09 -0500
committerAdam Beckmeyer <adam_git@thebeckmeyers.xyz>2016-11-14 16:28:09 -0500
commite2c4c64668e56446c0769c75a3ea1c656917d9a0 (patch)
treee27ef40cea54bb07d225134f9666a0e33ff705ef /pkgs
parent770e83ebf9bfcc2ee3d02c1faa9a8d8d937e5460 (diff)
downloadnixlib-e2c4c64668e56446c0769c75a3ea1c656917d9a0.tar
nixlib-e2c4c64668e56446c0769c75a3ea1c656917d9a0.tar.gz
nixlib-e2c4c64668e56446c0769c75a3ea1c656917d9a0.tar.bz2
nixlib-e2c4c64668e56446c0769c75a3ea1c656917d9a0.tar.lz
nixlib-e2c4c64668e56446c0769c75a3ea1c656917d9a0.tar.xz
nixlib-e2c4c64668e56446c0769c75a3ea1c656917d9a0.tar.zst
nixlib-e2c4c64668e56446c0769c75a3ea1c656917d9a0.zip
Python: pint: init at 0.7.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 1e84a6a9a392..96c412551d26 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -14878,6 +14878,22 @@ in {
     };
   };
 
+  pint = buildPythonPackage rec {
+    name = "pint-${version}";
+    version = "0.7.2";
+
+    meta = {
+      description = "Physical quantities module";
+      license = licenses.bsd3;
+      homepage = "https://github.com/hgrecco/pint/";
+    };
+
+    src = pkgs.fetchurl {
+      url = "mirror://pypi/p/pint/Pint-${version}.tar.gz";
+      sha256 = "1bbp5s34gcb9il2wyz4spznshahwbjvwi5bhjm7bnxk358spvf9q";
+    };
+  };
+
   pygal = buildPythonPackage rec {
     version = "2.0.10";
     name = "pygal-${version}";