pythonPackages.pxml: init at 0.2.13

This commit is contained in:
Griffin Smith 2020-04-11 01:11:11 -04:00
parent 58ee17a508
commit e1024031bb
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ stdenv
, pythonAtLeast
, isPy27
, buildPythonPackage
, fetchPypi
, blessings
, six
, nose
, coverage
}:
buildPythonPackage rec {
pname = "pxml";
version = "0.2.13";
disabled = pythonAtLeast "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "0c9zzfv6ciyf9qm7556wil45xxgykg1cj8isp1b88gimwcb2hxg4";
};
propagatedBuildInputs = [ blessings six ];
checkInputs = [ nose coverage ];
# test_prefixedWhitespace fails due to a python3 StringIO issue requiring
# bytes rather than str
checkPhase = ''
nosetests -e 'test_prefixedWhitespace'
'';
meta = with stdenv.lib; {
homepage = "https://github.com/metagriffin/pxml";
description = ''A python library and command-line tool to "prettify" and colorize XML.'';
maintainers = with maintainers; [ glittershark ];
license = licenses.gpl3;
};
}

View File

@ -3231,6 +3231,8 @@ in {
inherit (pkgs) lzo; inherit (pkgs) lzo;
}; };
pxml = callPackage ../development/python-modules/pxml { };
junos-eznc = callPackage ../development/python-modules/junos-eznc {}; junos-eznc = callPackage ../development/python-modules/junos-eznc {};
raven = callPackage ../development/python-modules/raven { }; raven = callPackage ../development/python-modules/raven { };