1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 08:29:20 +03:00
nixpkgs/pkgs/development/python-modules/xmljson/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
530 B
Nix
Raw Normal View History

2020-11-02 21:13:09 +11:00
{ 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 ];
};
}