depot/third_party/nixpkgs/pkgs/development/python-modules/xml2rfc/default.nix

101 lines
1.9 KiB
Nix
Raw Normal View History

{
lib,
appdirs,
buildPythonPackage,
configargparse,
decorator,
dict2xml,
fetchFromGitHub,
google-i18n-address,
html5lib,
intervaltree,
jinja2,
lxml,
markupsafe,
platformdirs,
pycairo,
pycountry,
pyflakes,
pypdf2,
pytestCheckHook,
python-fontconfig,
pythonOlder,
pyyaml,
requests,
six,
wcwidth,
}:
buildPythonPackage rec {
pname = "xml2rfc";
version = "3.21.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ietf-tools";
repo = "xml2rfc";
rev = "refs/tags/v${version}";
hash = "sha256-7lYNEyoLYbxn1ld08eXaN8BumYhN9EftpHQKxdu64MY=";
};
postPatch = ''
substituteInPlace Makefile \
--replace "SHELL := /bin/bash" "SHELL := bash" \
--replace "test flaketest" "test"
substituteInPlace setup.py \
--replace "'tox'," ""
'';
propagatedBuildInputs = [
appdirs
configargparse
dict2xml
google-i18n-address
html5lib
intervaltree
jinja2
lxml
markupsafe
platformdirs
pycountry
pyflakes
pypdf2
pyyaml
requests
six
wcwidth
];
nativeCheckInputs = [
decorator
pycairo
pytestCheckHook
python-fontconfig
];
# Requires Noto Serif and Roboto Mono font
doCheck = false;
checkPhase = ''
make tests-no-network
'';
pythonImportsCheck = [ "xml2rfc" ];
meta = with lib; {
description = "Tool generating IETF RFCs and drafts from XML sources";
mainProgram = "xml2rfc";
homepage = "https://github.com/ietf-tools/xml2rfc";
changelog = "https://github.com/ietf-tools/xml2rfc/blob/v${version}/CHANGELOG.md";
# 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 = with maintainers; [
vcunat
yrashk
];
};
}