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