2018-03-31 16:21:14 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, isPyPy }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-cjson";
|
2020-05-09 10:01:45 +00:00
|
|
|
version = "1.2.2";
|
2018-03-31 16:21:14 +00:00
|
|
|
disabled = isPy3k || isPyPy;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 10:01:45 +00:00
|
|
|
sha256 = "3006c2c218297be3448dc793218e0b15d20fe9839775521bfc294fc6aa24972b";
|
2018-03-31 16:21:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A very fast JSON encoder/decoder for Python";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://ag-projects.com/";
|
2018-03-31 16:21:14 +00:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
};
|
|
|
|
}
|