pythonPackages.demjson: move to python-modules/
Easier maintenance when expressions are in separate files.
This commit is contained in:
parent
b1e23a87b1
commit
013da4ef66
|
@ -0,0 +1,21 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, isPy36 }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "demjson";
|
||||||
|
version = "2.2.4";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
disabled = isPy36;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0ygbddpnvp5lby6mr5kz60la3hkvwwzv3wwb3z0w9ngxl0w21pii";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Encoder/decoder and lint/validator for JSON (JavaScript Object Notation)";
|
||||||
|
homepage = http://deron.meranda.us/python/demjson/;
|
||||||
|
license = licenses.lgpl3Plus;
|
||||||
|
maintainers = with maintainers; [ bjornfor ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4832,26 +4832,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
demjson = callPackage ../development/python-modules/demjson { };
|
||||||
demjson = buildPythonPackage rec {
|
|
||||||
pname = "demjson";
|
|
||||||
version = "2.2.4";
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
disabled = isPy36;
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "0ygbddpnvp5lby6mr5kz60la3hkvwwzv3wwb3z0w9ngxl0w21pii";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Encoder/decoder and lint/validator for JSON (JavaScript Object Notation)";
|
|
||||||
homepage = http://deron.meranda.us/python/demjson/;
|
|
||||||
license = licenses.lgpl3Plus;
|
|
||||||
maintainers = with maintainers; [ bjornfor ];
|
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
derpconf = self.buildPythonPackage rec {
|
derpconf = self.buildPythonPackage rec {
|
||||||
name = "derpconf-0.4.9";
|
name = "derpconf-0.4.9";
|
||||||
|
|
Loading…
Reference in New Issue