at 22.05-pre 461 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k, isPyPy }: 2 3buildPythonPackage rec { 4 pname = "python-cjson"; 5 version = "1.2.2"; 6 disabled = isPy3k || isPyPy; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "3006c2c218297be3448dc793218e0b15d20fe9839775521bfc294fc6aa24972b"; 11 }; 12 13 meta = with lib; { 14 description = "A very fast JSON encoder/decoder for Python"; 15 homepage = "https://ag-projects.com/"; 16 license = licenses.lgpl2; 17 }; 18}