nixpkgs/pkgs/development/python-modules/twill/default.nix

24 lines
617 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }:
2017-01-14 00:17:58 +01:00
buildPythonPackage rec {
pname = "twill";
version = "1.8.0";
2017-01-14 00:17:58 +01:00
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "d63e8b09aa4f6645571c70cd3ba47a911abbae4d7baa4b38fc7eb72f6cfda188";
2017-01-14 00:17:58 +01:00
};
checkInputs = [ nose ];
2017-01-14 00:17:58 +01:00
doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons
meta = with lib; {
2017-01-14 00:17:58 +01:00
homepage = http://twill.idyll.org/;
description = "A simple scripting language for Web browsing";
2017-01-14 00:17:58 +01:00
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
2017-01-14 00:17:58 +01:00
};
}