nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.mechanize: add patch for python 3.13

Hydra Failure: https://hydra.nixos.org/build/299849713
Ref: https://github.com/python-mechanize/mechanize/pull/102

+9
+9
pkgs/development/python-modules/mechanize/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + fetchpatch, 4 5 fetchPypi, 5 6 html5lib, 6 7 pytestCheckHook, ··· 20 19 inherit pname version; 21 20 hash = "sha256-HeqUf5vn6gq2EPe7xKTja0XWv9/O6imtPTiaiKGVfd8="; 22 21 }; 22 + 23 + patches = [ 24 + (fetchpatch { 25 + name = "fix-cookietests-python3.13.patch"; 26 + url = "https://github.com/python-mechanize/mechanize/commit/0c1cd4b65697dee4e4192902c9a2965d94700502.patch"; 27 + hash = "sha256-Xlx8ZwHkFbJqeWs+/fllYZt3CZRu9rD8bMHHPuUlRv4="; 28 + }) 29 + ]; 23 30 24 31 build-system = [ setuptools ]; 25 32