1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00

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