Unverified Commit f6d8ba32 authored by Grimmauld's avatar Grimmauld
Browse files

python3Packages.lxml: 6.0.1 -> 6.0.2

parent d462677d
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -17,16 +17,21 @@

buildPythonPackage rec {
  pname = "lxml";
  version = "6.0.1";
  version = "6.0.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "lxml";
    repo = "lxml";
    tag = "lxml-${version}";
    hash = "sha256-iY47nhAbA8ScnjmK2/7lVCBP8f65v1zOs3TcgQULlQ0=";
    hash = "sha256-Ri5SzfQJFghRcMAKHS5QKD365OZlio895fSlumq83vs=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail 'Cython>=3.1.4' 'Cython'
  '';

  build-system = [
    cython
    setuptools