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:
parent
dcc4324df4
commit
f49764d8b5
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue