summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFlorian Jacob <projects+git@florianjacob.de>2018-04-21 18:48:10 +0200
committerFlorian Jacob <projects+git@florianjacob.de>2018-04-22 15:25:33 +0200
commit2749531e0f1a76c7e611ce8a7f553de337c1f8e9 (patch)
treed475dd6a50f7020f67dad388535aedd3c373917a /pkgs/development/python-modules
parentce3961cc70d506838084834c22e29983899c5011 (diff)
downloadnixlib-2749531e0f1a76c7e611ce8a7f553de337c1f8e9.tar
nixlib-2749531e0f1a76c7e611ce8a7f553de337c1f8e9.tar.gz
nixlib-2749531e0f1a76c7e611ce8a7f553de337c1f8e9.tar.bz2
nixlib-2749531e0f1a76c7e611ce8a7f553de337c1f8e9.tar.lz
nixlib-2749531e0f1a76c7e611ce8a7f553de337c1f8e9.tar.xz
nixlib-2749531e0f1a76c7e611ce8a7f553de337c1f8e9.tar.zst
nixlib-2749531e0f1a76c7e611ce8a7f553de337c1f8e9.zip
frozendict: move to separate module
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/frozendict/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/frozendict/default.nix b/pkgs/development/python-modules/frozendict/default.nix
new file mode 100644
index 000000000000..4ec8eff70c6d
--- /dev/null
+++ b/pkgs/development/python-modules/frozendict/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "frozendict";
+  version = "1.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0ibf1wipidz57giy53dh7mh68f2hz38x8f4wdq88mvxj5pr7jhbp";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/slezica/python-frozendict;
+    description = "An immutable dictionary";
+    license = licenses.mit;
+  };
+}