2018-06-23 06:27:58 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }:
|
2017-01-13 15:17:58 -08:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "twill";
|
2017-05-27 05:24:47 -07:00
|
|
|
version = "1.8.0";
|
2017-01-13 15:17:58 -08:00
|
|
|
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-27 05:24:47 -07:00
|
|
|
sha256 = "d63e8b09aa4f6645571c70cd3ba47a911abbae4d7baa4b38fc7eb72f6cfda188";
|
2017-01-13 15:17:58 -08:00
|
|
|
};
|
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
checkInputs = [ nose ];
|
2017-01-13 15:17:58 -08:00
|
|
|
|
|
|
|
doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons
|
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://twill.idyll.org/";
|
2018-06-23 06:27:58 -07:00
|
|
|
description = "A simple scripting language for Web browsing";
|
2017-01-13 15:17:58 -08:00
|
|
|
license = licenses.mit;
|
2017-01-19 07:48:27 -08:00
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2017-01-13 15:17:58 -08:00
|
|
|
};
|
|
|
|
}
|