1{ stdenv, buildPythonPackage, fetchurl, isPy3k, pythonPackages }: 2buildPythonPackage rec { 3 pname = "twill"; 4 version = "1.8.0"; 5 name = "${pname}-${version}"; 6 7 disabled = isPy3k; 8 9 src = fetchurl { 10 url = "mirror://pypi/t/twill/${name}.tar.gz"; 11 sha256 = "d63e8b09aa4f6645571c70cd3ba47a911abbae4d7baa4b38fc7eb72f6cfda188"; 12 }; 13 14 propagatedBuildInputs = with pythonPackages; [ nose ]; 15 16 doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons 17 18 meta = with stdenv.lib; { 19 homepage = http://twill.idyll.org/; 20 description = "a simple scripting language for Web browsing"; 21 license = licenses.mit; 22 platforms = platforms.all; 23 maintainers = with maintainers; [ mic92 ]; 24 }; 25}