My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/xmljson/default.nix

26 lines
530 B

{ 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 ];
};
}