python310Packages.pyuv: disable

+2
+2
pkgs/development/python-modules/pyuv/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , pythonAtLeast 3 4 , fetchFromGitHub 4 5 , libuv 5 6 }: ··· 7 8 buildPythonPackage rec { 8 9 pname = "pyuv"; 9 10 version = "1.4.0"; 11 + disabled = pythonAtLeast "3.10"; # https://github.com/saghul/pyuv/issues/273 10 12 11 13 src = fetchFromGitHub { 12 14 owner = "saghul";