blob: 26d01980c15b0099d90582a1f40f41bd3953bcde (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
flask,
httpx,
lxml,
pyparsing,
pytestCheckHook,
quixote,
setuptools,
}:
buildPythonPackage rec {
pname = "twill";
version = "3.3.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-/ZT5ntn7YMafrD9/rWaOvROKo+CGFKSldG9jjH/eR0Q=";
};
pythonRelaxDeps = [ "lxml" ];
build-system = [ setuptools ];
dependencies = [
httpx
lxml
pyparsing
];
nativeCheckInputs = [
flask
pytestCheckHook
quixote
];
disabledTestPaths = [
# pytidylib is abandoned
"tests/test_tidy.py"
];
pythonImportsCheck = [ "twill" ];
meta = {
description = "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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ mic92 ];
};
}
|