aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ijson
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2017-09-15 06:33:31 +0100
committerRodney Lorrimar <dev@rodney.id.au>2017-09-16 09:23:17 +0100
commitc5d1218336d7961b9e13e9c24ac9c1ee593fcd51 (patch)
tree52923fd97ed2c5c1ca747d60bfd2b1ebc3c18234 /pkgs/development/python-modules/ijson
parentd851b95d636b4afab9caec61a32a10c7cfdacb51 (diff)
pythonPackages.ijson: init at 2.3
Diffstat (limited to 'pkgs/development/python-modules/ijson')
-rw-r--r--pkgs/development/python-modules/ijson/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ijson/default.nix b/pkgs/development/python-modules/ijson/default.nix
new file mode 100644
index 00000000000..f70cc9d6945
--- /dev/null
+++ b/pkgs/development/python-modules/ijson/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+ name = "${pname}-${version}";
+ pname = "ijson";
+ version = "2.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0x7l9k2dvxzd5mjgiq15nl9b0sxcqy1cqaz744bjwkz4z5mrypzg";
+ };
+
+ doCheck = false; # something about yajl
+
+ meta = with stdenv.lib; {
+ description = "Iterative JSON parser with a standard Python iterator interface";
+ homepage = "https://github.com/isagalaev/ijson";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ rvl ];
+ };
+}