2019-09-15 15:31:57 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
|
2017-10-29 10:43:27 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "demjson";
|
|
|
|
version = "2.2.4";
|
2019-09-15 15:31:57 +01:00
|
|
|
disabled = isPy3k;
|
2017-10-29 10:43:27 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0ygbddpnvp5lby6mr5kz60la3hkvwwzv3wwb3z0w9ngxl0w21pii";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Encoder/decoder and lint/validator for JSON (JavaScript Object Notation)";
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://github.com/dmeranda/demjson";
|
2017-10-29 10:43:27 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|