python.pkgs.twill: fix build

This commit is contained in:
Frederik Rietdijk 2020-06-11 14:01:09 +02:00
parent dcc4324df4
commit f49764d8b5

View File

@ -1,10 +1,12 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }: { lib, buildPythonPackage, fetchPypi, isPy3k, nose
, lxml
, requests
, pyparsing
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "twill"; pname = "twill";
version = "2.0"; version = "2.0";
disabled = isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "225e114da85555d50433a1e242ed4215fe613c30072d13fbe4c4aacf0ad53b0a"; sha256 = "225e114da85555d50433a1e242ed4215fe613c30072d13fbe4c4aacf0ad53b0a";
@ -12,6 +14,12 @@ buildPythonPackage rec {
checkInputs = [ nose ]; checkInputs = [ nose ];
propagatedBuildInputs = [
lxml
requests
pyparsing
];
doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons
meta = with lib; { meta = with lib; {