mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
xml2rfc: Use pythonPackages.xml2rfc
This commit is contained in:
parent
bf050e9456
commit
8fd8f3a44a
|
@ -40,6 +40,6 @@ buildPythonPackage rec {
|
|||
# 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 ];
|
||||
maintainers = with maintainers; [ vcunat yrashk ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
{ 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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -24803,7 +24803,7 @@ in
|
|||
|
||||
diceware = callPackage ../tools/security/diceware { };
|
||||
|
||||
xml2rfc = callPackage ../tools/typesetting/xml2rfc { };
|
||||
xml2rfc = with python3Packages; toPythonApplication xml2rfc;
|
||||
|
||||
mmark = callPackage ../tools/typesetting/mmark { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue