pythonPackages.xml2rfc: init at 2.9.8

It seems to work fine, in python2Packages and python3Packages.
If you find a problem, let me know and I'll try to fix it.
This commit is contained in:
Vladimír Čunát 2018-06-18 14:15:11 +02:00
parent c449f0b55c
commit 3756efbdcc
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, fetchurl, buildPythonPackage, intervaltree, pyflakes, requests, lxml }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "xml2rfc";
version = "2.9.8";
src = fetchurl {
url = "mirror://pypi/x/${pname}/${name}.tar.gz";
sha256 = "1img6941wvwpk71q3vi9526bfjbh949k4lphrvdwlcf4igwy435m";
};
propagatedBuildInputs = [ intervaltree pyflakes requests lxml ];
meta = with lib; {
description = "Tool generating IETF RFCs and drafts from XML sources";
homepage = https://tools.ietf.org/tools/xml2rfc/trac/;
# Well, parts might be considered unfree, if being strict; see:
# http://metadata.ftp-master.debian.org/changelogs/non-free/x/xml2rfc/xml2rfc_2.9.6-1_copyright
license = licenses.bsd3;
maintainers = [ maintainers.vcunat ];
};
}

View File

@ -15051,6 +15051,8 @@ EOF
};
});
xml2rfc = callPackage ../development/python-modules/xml2rfc { };
xmltodict = callPackage ../development/python-modules/xmltodict { };
xarray = callPackage ../development/python-modules/xarray { };