blob: 8d82c3b4cb0cdebc76045a31b0e09e87410c103d (
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
55
56
|
{
lib,
buildPythonPackage,
fetchpatch,
fetchPypi,
html5lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "mechanize";
version = "0.4.10";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-HeqUf5vn6gq2EPe7xKTja0XWv9/O6imtPTiaiKGVfd8=";
};
patches = [
(fetchpatch {
name = "fix-cookietests-python3.13.patch";
url = "https://github.com/python-mechanize/mechanize/commit/0c1cd4b65697dee4e4192902c9a2965d94700502.patch";
hash = "sha256-Xlx8ZwHkFbJqeWs+/fllYZt3CZRu9rD8bMHHPuUlRv4=";
})
];
build-system = [ setuptools ];
dependencies = [ html5lib ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mechanize" ];
disabledTestPaths = [
# Tests require network access
"test/test_urllib2_localnet.py"
"test/test_functional.py"
];
disabledTests = [
# Tests require network access
"test_pickling"
"test_password_manager"
];
meta = {
description = "Stateful programmatic web browsing in Python";
homepage = "https://github.com/python-mechanize/mechanize";
changelog = "https://github.com/python-mechanize/mechanize/blob/v${version}/ChangeLog";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|