Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / twill / default.nix
blobe234084d31decbc839ad6de552bf47b602fc4c79
1 { lib, buildPythonPackage, fetchPypi, isPy3k, nose
2 , lxml
3 , requests
4 , pyparsing
5 }:
6 buildPythonPackage rec {
7   pname = "twill";
8   version = "2.0.2";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "fc694ac1cb0616cfba2f9db4720e9d354bf656c318e21ef604a7e3caaef83d10";
13   };
15   checkInputs = [ nose ];
17   propagatedBuildInputs = [
18     lxml
19     requests
20     pyparsing
21   ];
23   doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons
25   meta = with lib; {
26     homepage = "https://twill-tools.github.io/twill/";
27     description = "A simple scripting language for Web browsing";
28     license     = licenses.mit;
29     maintainers = with maintainers; [ mic92 ];
30   };