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.lxml: 6.0.1 -> 6.0.2

Grimmauld f6d8ba32 d462677d

+7 -2
+7 -2
pkgs/development/python-modules/lxml/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "lxml"; 20 - version = "6.0.1"; 20 + version = "6.0.2"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "lxml"; 25 25 repo = "lxml"; 26 26 tag = "lxml-${version}"; 27 - hash = "sha256-iY47nhAbA8ScnjmK2/7lVCBP8f65v1zOs3TcgQULlQ0="; 27 + hash = "sha256-Ri5SzfQJFghRcMAKHS5QKD365OZlio895fSlumq83vs="; 28 28 }; 29 + 30 + postPatch = '' 31 + substituteInPlace pyproject.toml \ 32 + --replace-fail 'Cython>=3.1.4' 'Cython' 33 + ''; 29 34 30 35 build-system = [ 31 36 cython