xml2rfc: init at 2.9.6

This commit is contained in:
Yurii Rashkovskii 2018-03-18 13:43:58 +07:00
parent b80dd958d0
commit 3315a549bf
No known key found for this signature in database
GPG Key ID: 1D60D7CFD80845FF
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ python, stdenv }:
with python.pkgs;
buildPythonPackage rec {
pname = "xml2rfc";
version = "2.9.6";
buildInputs = [ intervaltree lxml requests pyflakes ];
propagatedBuildInputs = [ intervaltree lxml requests six ];
src = fetchPypi {
inherit pname version;
sha256 = "1wr161lx6f1b3fq14ddr3y4jl0myrcmqs1s3fzsighvlmqfdihj7";
};
meta = with stdenv.lib; {
homepage = "https://xml2rfc.tools.ietf.org/";
license = licenses.bsdOriginal;
description = "Xml2rfc generates RFCs and IETF drafts from document source in XML according to the dtd in RFC2629.";
maintainers = [ maintainers.yrashk ];
};
}

View File

@ -20980,4 +20980,6 @@ with pkgs;
simplehttp2server = callPackage ../servers/simplehttp2server { };
diceware = callPackage ../tools/security/diceware { };
xml2rfc = callPackage ../tools/typesetting/xml2rfc { };
}