Unverified Commit 43a25ec1 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #260798 from marsam/pyuv-python-3.11

python311Packages.pyuv: fix build
parents 6f9a9aff 0609eddd
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
buildPythonPackage rec {
  pname = "pyuv";
  version = "1.4.0";
  disabled = pythonAtLeast "3.11";
  disabled = pythonAtLeast "3.12";

  src = fetchFromGitHub {
    owner = "saghul";
@@ -24,6 +24,11 @@ buildPythonPackage rec {
      url = "https://github.com/saghul/pyuv/commit/8bddcc27052017b5b9cb89c24dbfdf06737b0dd3.patch";
      hash = "sha256-J/3ky64Ff+gYpN3ksFLNuZ5xgPbBkyOl4LTY6fiHAgk=";
    })
    (fetchpatch {
      name = "fix-build-with-python3.11.patch";
      url = "https://github.com/saghul/pyuv/commit/2a3d42d44c6315ebd73899a35118380d2d5979b5.patch";
      hash = "sha256-CQZexd6EjadCB7KyxeZKM24zrD9rXuNv4oA+Tb2nsdw=";
    })
  ];

  setupPyBuildFlags = [ "--use-system-libuv" ];