python.pkgs.simplejson: 3.8.1 -> 3.10.0

This commit is contained in:
Frederik Rietdijk 2017-05-28 10:08:10 +02:00
parent 90b08c29d2
commit d0f2361bc1
2 changed files with 29 additions and 24 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "simplejson";
version = "3.10.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "953be622e88323c6f43fad61ffd05bebe73b9fd9863a46d68b052d2aa7d71ce2";
};
meta = {
description = "A simple, fast, extensible JSON encoder/decoder for Python";
longDescription = ''
simplejson is compatible with Python 2.4 and later with no
external dependencies. It covers the full JSON specification
for both encoding and decoding, with unicode support. By
default, encoding is done in an encoding neutral fashion (plain
ASCII with \uXXXX escapes for unicode characters).
'';
homepage = http://code.google.com/p/simplejson/;
license = lib.licenses.mit;
};
}

View file

@ -22775,30 +22775,7 @@ in {
};
};
simplejson = buildPythonPackage (rec {
name = "simplejson-3.8.1";
src = pkgs.fetchurl {
url = "mirror://pypi/s/simplejson/${name}.tar.gz";
sha256 = "14r4l4rcsyf87p2j4ycsbb017n4vzxfmv285rq2gny4w47rwi2j2";
};
meta = {
description = "A simple, fast, extensible JSON encoder/decoder for Python";
longDescription = ''
simplejson is compatible with Python 2.4 and later with no
external dependencies. It covers the full JSON specification
for both encoding and decoding, with unicode support. By
default, encoding is done in an encoding neutral fashion (plain
ASCII with \uXXXX escapes for unicode characters).
'';
homepage = http://code.google.com/p/simplejson/;
license = licenses.mit;
};
});
simplejson = callPackage ../development/python-modules/simplejson { };
simpleldap = buildPythonPackage rec {
version = "0.8";