summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-10-07 06:32:48 -0400
committerShea Levy <shea@shealevy.com>2014-10-07 06:32:48 -0400
commita18a992785a06c3d4c504277ca6118c5e3b10da3 (patch)
tree49459bc035f33f7a64e8aba61e806cab80324cba /pkgs
parent0f37f832c67f90cb6102473533cdd723b43f637f (diff)
Add ujson python package
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 36c42b449f60e..6bae5eb1019a8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -10506,6 +10506,22 @@ let
   };
 
 
+  ujson = buildPythonPackage rec {
+    name = "ujson-1.33";
+
+    src = fetchurl {
+      url = "https://pypi.python.org/packages/source/u/ujson/${name}.zip";
+      md5 = "8148a2493fff78940feab1e11dc0a893";
+    };
+
+    meta = {
+      homepage = http://pypi.python.org/pypi/ujson;
+      description = "Ultra fast JSON encoder and decoder for Python";
+      license = licenses.bsd3;
+    };
+  };
+
+
   unidecode = buildPythonPackage rec {
     name = "Unidecode-0.04.12";