python310Packages.pyuv: disable

This commit is contained in:
Martin Weinelt 2022-03-07 11:08:14 +01:00
parent 168515a53e
commit 4cfdaeb6e3

View file

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, fetchFromGitHub
, libuv
}:
@ -7,6 +8,7 @@
buildPythonPackage rec {
pname = "pyuv";
version = "1.4.0";
disabled = pythonAtLeast "3.10"; # https://github.com/saghul/pyuv/issues/273
src = fetchFromGitHub {
owner = "saghul";