python311Packages.pyuv: fix build

This commit is contained in:
Mario Rodas 2023-10-12 04:20:00 +00:00
parent ee176b5fbb
commit 0609eddd64

View File

@ -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" ];