about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/simplejson/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/simplejson/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/simplejson/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/simplejson/default.nix b/nixpkgs/pkgs/development/python-modules/simplejson/default.nix
new file mode 100644
index 000000000000..cc60e81a59ee
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/simplejson/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, stdenv
+, isPy3k
+, pytest
+}:
+
+buildPythonPackage rec {
+  pname = "simplejson";
+  version = "3.16.0";
+  doCheck = !stdenv.isDarwin;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "b1f329139ba647a9548aa05fb95d046b4a677643070dc2afc05fa2e975d09ca5";
+  };
+
+  # Package does not need pytest, but its a bit easier debugging.
+  checkInputs = [ pytest ];
+  # Ignore warnings because test does not expect them in stderr
+  # See https://github.com/simplejson/simplejson/issues/241
+  checkPhase = ''
+    PYTHONWARNINGS="ignore" pytest simplejson/tests
+  '';
+
+  meta = {
+    description = "A simple, fast, extensible JSON encoder/decoder for Python";
+    longDescription = ''
+      simplejson is compatible with Python 2.4 and later with no
+      external dependencies.  It covers the full JSON specification
+      for both encoding and decoding, with unicode support.  By
+      default, encoding is done in an encoding neutral fashion (plain
+      ASCII with \uXXXX escapes for unicode characters).
+    '';
+    homepage = https://github.com/simplejson/simplejson;
+    license = with lib.licenses; [ mit afl21 ];
+  };
+}