mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
pythonPackages.xmljson: init at 0.2.1
This commit is contained in:
parent
c6afa8820b
commit
7e820842a9
26
pkgs/development/python-modules/xmljson/default.nix
Normal file
26
pkgs/development/python-modules/xmljson/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
, lxml
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "xmljson";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "b4158e66aa1e62ee39f7f80eb2fe4f767670ba3c0d5de9804420dc53427fdec8";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
lxml
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Converts XML into dictionary structures and vice-versa";
|
||||||
|
homepage = "https://github.com/sanand0/xmljson";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ rakesh4g ];
|
||||||
|
};
|
||||||
|
}
|
@ -7704,6 +7704,8 @@ in {
|
|||||||
|
|
||||||
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
|
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
|
||||||
|
|
||||||
|
xmljson = callPackage ../development/python-modules/xmljson { };
|
||||||
|
|
||||||
xmlschema = callPackage ../development/python-modules/xmlschema { };
|
xmlschema = callPackage ../development/python-modules/xmlschema { };
|
||||||
|
|
||||||
xmltodict = callPackage ../development/python-modules/xmltodict { };
|
xmltodict = callPackage ../development/python-modules/xmltodict { };
|
||||||
|
Loading…
Reference in New Issue
Block a user