9 buildPythonPackage rec {
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "python-dict2xml";
19 rev = "refs/tags/release-${version}";
20 hash = "sha256-5GnIVpG2xHKYv27sSjjmm8JsZ1YR9Mvc3SqE4SnE84o=";
23 nativeBuildInputs = [ hatchling ];
25 # Tests are inplemented in a custom DSL (RSpec)
28 pythonImportsCheck = [ "dict2xml" ];
31 description = "Library to convert a Python dictionary into an XML string";
32 homepage = "https://github.com/delfick/python-dict2xml";
33 changelog = "https://github.com/delfick/python-dict2xml/releases/tag/release-${version}";
34 license = licenses.mit;
35 maintainers = with maintainers; [ johnazoidberg ];