about summary refs log tree commit diff
path: root/pkgs/development/python-modules/twill/default.nix
blob: 097e691f7c182a0dae5dda6ae0acaa1b593ca505 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }:
buildPythonPackage rec {
  pname = "twill";
  version = "1.8.0";

  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "d63e8b09aa4f6645571c70cd3ba47a911abbae4d7baa4b38fc7eb72f6cfda188";
  };

  checkInputs = [ nose ];

  doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons

  meta = with lib; {
    homepage = http://twill.idyll.org/;
    description = "A simple scripting language for Web browsing";
    license     = licenses.mit;
    maintainers = with maintainers; [ mic92 ];
  };
}