Files
nixpkgs/pkgs/development/python-modules/mechanize/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

60 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchpatch,
fetchPypi,
html5lib,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "mechanize";
version = "0.4.10";
pyproject = true;
disabled = pythonOlder "3.7";
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 = [ ];
};
}