blob: 08e8ad74de225c3935b4153d3fd7b4ea0a1d7652 (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
buildPythonPackage,
fetchPypi,
httpx,
lxml,
pyparsing,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
quixote,
setuptools,
}:
buildPythonPackage rec {
pname = "twill";
version = "3.2.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-YlZKvOGxLWwGh+MqCXf8tfruxLK60H73k1VQhGOSTc8=";
};
pythonRelaxDeps = [ "lxml" ];
build-system = [ setuptools ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
httpx
lxml
pyparsing
];
nativeCheckInputs = [
pytestCheckHook
quixote
];
disabledTestPaths = [
# pytidylib is abandoned
"tests/test_tidy.py"
];
pythonImportsCheck = [ "twill" ];
meta = with lib; {
description = "A simple scripting language for Web browsing";
homepage = "https://twill-tools.github.io/twill/";
changelog = "https://github.com/twill-tools/twill/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
};
}
|