Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / cjson / default.nix
blobd34534e3eb8067f0a84c80ec7c073b7e4edc074d
1 { lib, buildPythonPackage, fetchPypi, isPy3k, isPyPy }:
3 buildPythonPackage rec {
4   pname = "python-cjson";
5   version = "1.2.2";
6   disabled = isPy3k || isPyPy;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "3006c2c218297be3448dc793218e0b15d20fe9839775521bfc294fc6aa24972b";
11   };
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   };