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

buildPythonPackage rec {
  pname = "python-cjson";
  version = "1.2.2";
  disabled = isPy3k || isPyPy;

  src = fetchPypi {
    inherit pname version;
    sha256 = "3006c2c218297be3448dc793218e0b15d20fe9839775521bfc294fc6aa24972b";
  };

  meta = with stdenv.lib; {
    description = "A very fast JSON encoder/decoder for Python";
    homepage = "https://ag-projects.com/";
    license = licenses.lgpl2;
  };
}