summary refs log tree commit diff
path: root/pkgs/tools/typesetting/xml2rfc/default.nix
blob: 7fe0396ae440e3bf150ce9aaeede388ced25de5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ python, stdenv }:

with python.pkgs;

buildPythonPackage rec {
  pname = "xml2rfc";
  version = "2.9.8";

  buildInputs = [ intervaltree lxml requests pyflakes ];
  propagatedBuildInputs = [ intervaltree lxml requests six ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "b50ce2f98bc431cadbcef0523213497049b78c2829ee81c399976f1e4832afc6";
  };

  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 ];
  };

}