Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 468 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, isPy3k, isPyPy }: 2 3buildPythonPackage rec { 4 pname = "python-cjson"; 5 version = "1.2.1"; 6 disabled = isPy3k || isPyPy; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "52db2745264624768bfd9b604acb38f631bde5c2ec9b23861677d747e4558626"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "A very fast JSON encoder/decoder for Python"; 15 homepage = http://ag-projects.com/; 16 license = licenses.lgpl2; 17 }; 18}