Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / twill / default.nix
blobddea5117a6c07db8ce7b282e27998f16f791cc48
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , lxml
5 , requests
6 , pyparsing
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "twill";
12   version = "3.2.3";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-m4jrxx7udWkRXzYS0Yfd14tKVHt8kGYPn2eTa4unOdc=";
20   };
22   propagatedBuildInputs = [
23     lxml
24     requests
25     pyparsing
26   ];
28   pythonImportsCheck = [
29     "twill"
30   ];
32   # pypi package comes without tests, other homepage does not provide all verisons
33   doCheck = false;
35   meta = with lib; {
36     description = "A simple scripting language for Web browsing";
37     homepage = "https://twill-tools.github.io/twill/";
38     license = licenses.mit;
39     maintainers = with maintainers; [ mic92 ];
40   };