nixpkgs/pkgs/development/python-modules/untangle/default.nix

26 lines
663 B
Nix
Raw Normal View History

2020-01-27 09:39:40 +00:00
{ lib, buildPythonPackage, fetchFromGitHub, python }:
buildPythonPackage rec {
pname = "untangle";
version = "1.1.1";
2020-08-25 02:07:09 +00:00
2020-01-27 09:39:40 +00:00
src = fetchFromGitHub {
owner = "stchris";
repo = "untangle";
# 1.1.1 is not tagged on GitHub
rev = "61b57cd771a40df7d1621e9ec3c68d9acd733d31";
sha256 = "0ffvlfyyl82xi4akz1lls32lrnlrn44ik41v8x8xh9ghy0n0ick7";
};
2020-08-25 02:07:09 +00:00
2020-01-27 09:39:40 +00:00
checkPhase = ''
${python.interpreter} -m unittest discover -s tests
'';
2020-08-25 02:07:09 +00:00
2020-01-27 09:39:40 +00:00
meta = with lib; {
description = "Convert XML documents into Python objects";
homepage = "https://github.com/stchris/untangle";
2020-01-27 09:39:40 +00:00
license = licenses.mit;
maintainers = [ maintainers.arnoldfarkas ];
};
}