depot/third_party/nixpkgs/pkgs/development/python-modules/untangle/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

29 lines
719 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, unittestCheckHook, defusedxml }:
buildPythonPackage rec {
pname = "untangle";
version = "1.2.1";
src = fetchFromGitHub {
owner = "stchris";
repo = "untangle";
# 1.1.1 is not tagged on GitHub
rev = "refs/tags/${version}";
hash = "sha256-cJkN8vT5hW5hRuLxr/6udwMO4GVH1pJhAc6qmPO2EEI=";
};
propagatedBuildInputs = [
defusedxml
];
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [ "-s" "tests" ];
meta = with lib; {
description = "Convert XML documents into Python objects";
homepage = "https://github.com/stchris/untangle";
license = licenses.mit;
maintainers = [ maintainers.arnoldfarkas ];
};
}