summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2015-11-12 12:01:50 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2015-11-12 12:01:50 +0100
commitfef06f6875ef4641871b74ae3ba8e4d8d21a9682 (patch)
treeea8ca3f6ac1efad3faa5261e5aa8416dc2c96b6e /pkgs
parent8f4bd8799392df9bae49f49f52010523efdd3021 (diff)
downloadnixlib-fef06f6875ef4641871b74ae3ba8e4d8d21a9682.tar
nixlib-fef06f6875ef4641871b74ae3ba8e4d8d21a9682.tar.gz
nixlib-fef06f6875ef4641871b74ae3ba8e4d8d21a9682.tar.bz2
nixlib-fef06f6875ef4641871b74ae3ba8e4d8d21a9682.tar.lz
nixlib-fef06f6875ef4641871b74ae3ba8e4d8d21a9682.tar.xz
nixlib-fef06f6875ef4641871b74ae3ba8e4d8d21a9682.tar.zst
nixlib-fef06f6875ef4641871b74ae3ba8e4d8d21a9682.zip
python munch: init at 2.0.4
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 0397c0508f4b..8ef726a5838a 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -8954,6 +8954,22 @@ let
     };
   };
 
+  munch = buildPythonPackage rec {
+    name = "munch-${version}";
+    version = "2.0.4";
+
+    src = pkgs.fetchurl {
+      url = "https://pypi.python.org/packages/source/m/munch/${name}.tar.gz";
+      sha256 = "1420683a94f3a2ffc77935ddd28aa9ccb540dd02b75e02ed7ea863db437ab8b2";
+    };
+
+    meta = {
+      description = "A dot-accessible dictionary (a la JavaScript objects)";
+      license = licenses.mit;
+      homepage = http://github.com/Infinidat/munch;
+    };
+  };
+
   nototools = buildPythonPackage rec {
     version = "git-2015-09-16";
     name = "nototools-${version}";