1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, isPyPy
5}:
6
7buildPythonPackage rec {
8 pname = "ujson";
9 version = "1.35";
10 disabled = isPyPy;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "11jz5wi7mbgqcsz52iqhpyykiaasila4lq8cmc2d54bfa3jp6q7n";
15 };
16
17 meta = with stdenv.lib; {
18 homepage = https://pypi.python.org/pypi/ujson;
19 description = "Ultra fast JSON encoder and decoder for Python";
20 license = licenses.bsd3;
21 };
22
23}