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

24 lines
617 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }:
2017-01-14 00:17:58 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "twill";
2017-05-27 14:24:47 +02:00
version = "1.8.0";
2017-01-14 00:17:58 +01:00
disabled = isPy3k;
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2017-05-27 14:24:47 +02:00
sha256 = "d63e8b09aa4f6645571c70cd3ba47a911abbae4d7baa4b38fc7eb72f6cfda188";
2017-01-14 00:17:58 +01:00
};
2018-06-23 15:27:58 +02: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
2018-06-23 15:27:58 +02:00
meta = with lib; {
2017-01-14 00:17:58 +01:00
homepage = http://twill.idyll.org/;
2018-06-23 15:27:58 +02:00
description = "A simple scripting language for Web browsing";
2017-01-14 00:17:58 +01:00
license = licenses.mit;
2017-01-19 16:48:27 +01:00
maintainers = with maintainers; [ mic92 ];
2017-01-14 00:17:58 +01:00
};
}