summary refs log tree commit diff
path: root/pkgs/development/python-modules/immutables
diff options
context:
space:
mode:
authorSpencer Baugh <sbaugh@catern.com>2018-05-08 22:14:03 +0000
committerSpencer Baugh <sbaugh@catern.com>2018-05-11 13:19:12 +0000
commit5862c6835a3280089a8258a9067fde69f827396c (patch)
tree9fe006ea31a4664fa3a79c0a4b1b851508e086ff /pkgs/development/python-modules/immutables
parent86b37d1f94d56b0a2f80b8f1a51e8384e7e9b6db (diff)
downloadnixpkgs-5862c6835a3280089a8258a9067fde69f827396c.tar
nixpkgs-5862c6835a3280089a8258a9067fde69f827396c.tar.gz
nixpkgs-5862c6835a3280089a8258a9067fde69f827396c.tar.bz2
nixpkgs-5862c6835a3280089a8258a9067fde69f827396c.tar.lz
nixpkgs-5862c6835a3280089a8258a9067fde69f827396c.tar.xz
nixpkgs-5862c6835a3280089a8258a9067fde69f827396c.tar.zst
nixpkgs-5862c6835a3280089a8258a9067fde69f827396c.zip
pythonPackages.immutables: init at 0.5
Diffstat (limited to 'pkgs/development/python-modules/immutables')
-rw-r--r--pkgs/development/python-modules/immutables/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/immutables/default.nix b/pkgs/development/python-modules/immutables/default.nix
new file mode 100644
index 00000000000..975353406ca
--- /dev/null
+++ b/pkgs/development/python-modules/immutables/default.nix
@@ -0,0 +1,19 @@
+{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
+
+buildPythonPackage rec {
+  pname = "immutables";
+  version = "0.5";
+  disabled = pythonOlder "3.5";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1hba0vkqanwfnb5b3rs14bs7schsmczhan5nd93c1i6fzi17glap";
+  };
+
+  meta = {
+    description = "An immutable mapping type for Python";
+    homepage = https://github.com/MagicStack/immutables;
+    license = with lib.licenses; [ asl20 ];
+    maintainers = with lib.maintainers; [ catern ];
+  };
+}