9 buildPythonPackage rec {
12 format = "setuptools";
14 src = fetchFromGitHub {
17 # 1.1.1 is not tagged on GitHub
18 rev = "refs/tags/${version}";
19 hash = "sha256-cJkN8vT5hW5hRuLxr/6udwMO4GVH1pJhAc6qmPO2EEI=";
22 propagatedBuildInputs = [ defusedxml ];
24 nativeCheckInputs = [ unittestCheckHook ];
26 unittestFlagsArray = [
32 description = "Convert XML documents into Python objects";
33 homepage = "https://github.com/stchris/untangle";
34 license = licenses.mit;
35 maintainers = [ maintainers.arnoldfarkas ];