mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Merge pull request #102440 from formbay/xmljson
pythonPackages.xmljson: init at 0.2.1
This commit is contained in:
commit
1406e32022
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 ];
|
||||
};
|
||||
}
|
@ -7802,6 +7802,8 @@ in {
|
||||
|
||||
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
|
||||
|
||||
xmljson = callPackage ../development/python-modules/xmljson { };
|
||||
|
||||
xmlschema = callPackage ../development/python-modules/xmlschema { };
|
||||
|
||||
xmltodict = callPackage ../development/python-modules/xmltodict { };
|
||||
|
Loading…
Reference in New Issue
Block a user