pythonPackages.xml2rfc: fix build

Adds the missing dependencies `google-i18n-address`, `pycountry` and
`html5lib` from the `pythonPackages` subtree.

See also https://hydra.nixos.org/build/86535305
This commit is contained in:
Maximilian Bosch 2019-01-10 02:24:42 +01:00 committed by worldofpeace
parent b58e41ebad
commit 338a5c3ca7

View File

@ -1,4 +1,6 @@
{ lib, fetchPypi, buildPythonPackage, intervaltree, pyflakes, requests, lxml }:
{ lib, fetchPypi, buildPythonPackage, intervaltree, pyflakes, requests, lxml, google-i18n-address
, pycountry, html5lib, six
}:
buildPythonPackage rec {
pname = "xml2rfc";
@ -9,7 +11,20 @@ buildPythonPackage rec {
sha256 = "64609a2194d18c03e2348f1ea2fb97208b3455dfb76a16900143813aa61b6d3c";
};
propagatedBuildInputs = [ intervaltree pyflakes requests lxml ];
propagatedBuildInputs = [
intervaltree
pyflakes
requests
lxml
google-i18n-address
pycountry
html5lib
six
];
preCheck = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "Tool generating IETF RFCs and drafts from XML sources";