aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/twill/default.nix
blob: e11d7392e1c0d575fa1cdecf4980b1415f4bcefa (plain)
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 ];
  };
}