1{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }: 2buildPythonPackage rec { 3 pname = "twill"; 4 version = "1.8.0"; 5 6 disabled = isPy3k; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "d63e8b09aa4f6645571c70cd3ba47a911abbae4d7baa4b38fc7eb72f6cfda188"; 11 }; 12 13 checkInputs = [ nose ]; 14 15 doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons 16 17 meta = with lib; { 18 homepage = http://twill.idyll.org/; 19 description = "A simple scripting language for Web browsing"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ mic92 ]; 22 }; 23}