pythonPackages.xml2rfc: 2.18.0 -> 2.27.1

This commit is contained in:
Daniel Schaefer 2019-09-14 17:07:30 +02:00 committed by Robin Gloster
parent d769048286
commit bf050e9456
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF

View file

@ -1,15 +1,15 @@
{ lib, fetchPypi, buildPythonPackage, intervaltree, pyflakes, requests, lxml, google-i18n-address { lib, fetchPypi, buildPythonPackage, intervaltree, pyflakes, requests, lxml, google-i18n-address
, pycountry, html5lib, six , pycountry, html5lib, six, kitchen, pypdf2, dict2xml, weasyprint
, stdenv , stdenv
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "xml2rfc"; pname = "xml2rfc";
version = "2.18.0"; version = "2.27.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "e192236798615f34479a9bb9f30df72ce0e5f319df75ecc0473d896713a17451"; sha256 = "00v5gsshy1rmjd334d2awh0mvri949lmyk8f02wfr20rq6fc3xqd";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -21,13 +21,18 @@ buildPythonPackage rec {
pycountry pycountry
html5lib html5lib
six six
kitchen
pypdf2
dict2xml
weasyprint
]; ];
preCheck = '' preCheck = ''
export HOME=$(mktemp -d) export HOME=$(mktemp -d)
''; '';
doCheck = !stdenv.isDarwin; # lxml tries to fetch from the internet
doCheck = false;
meta = with lib; { meta = with lib; {
description = "Tool generating IETF RFCs and drafts from XML sources"; description = "Tool generating IETF RFCs and drafts from XML sources";