1{ lib
2, buildPythonPackage
3, fetchPypi
4, stdenv
5}:
6
7buildPythonPackage rec {
8 pname = "simplejson";
9 version = "3.16.0";
10 doCheck = !stdenv.isDarwin;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "b1f329139ba647a9548aa05fb95d046b4a677643070dc2afc05fa2e975d09ca5";
15 };
16
17 meta = {
18 description = "A simple, fast, extensible JSON encoder/decoder for Python";
19 longDescription = ''
20 simplejson is compatible with Python 2.4 and later with no
21 external dependencies. It covers the full JSON specification
22 for both encoding and decoding, with unicode support. By
23 default, encoding is done in an encoding neutral fashion (plain
24 ASCII with \uXXXX escapes for unicode characters).
25 '';
26 homepage = http://code.google.com/p/simplejson/;
27 license = lib.licenses.mit;
28 };
29}