summary refs log tree commit diff
path: root/pkgs/development/python-modules/ujson/default.nix
blob: a9d68978c3b0c63bd7ec64ed435397a0b748b614 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
}:

buildPythonPackage rec {
  pname = "ujson";
  version = "1.35";
  disabled = isPyPy;

  src = fetchPypi {
    inherit pname version;
    sha256 = "11jz5wi7mbgqcsz52iqhpyykiaasila4lq8cmc2d54bfa3jp6q7n";
  };

  meta = with stdenv.lib; {
    homepage = https://pypi.python.org/pypi/ujson;
    description = "Ultra fast JSON encoder and decoder for Python";
    license = licenses.bsd3;
  };

}