mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonAtLeast,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
libuv,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyuv";
|
|
version = "1.4.0";
|
|
format = "setuptools";
|
|
disabled = pythonAtLeast "3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "saghul";
|
|
repo = "pyuv";
|
|
rev = "pyuv-${version}";
|
|
sha256 = "1wiwwdylz66lfsjh6p4iv7pfhzvnhwjk332625njizfhz3gq9fwr";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "fix-build-with-python3.10.patch";
|
|
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" ];
|
|
|
|
buildInputs = [ libuv ];
|
|
|
|
doCheck = false; # doesn't work in sandbox
|
|
|
|
pythonImportsCheck = [ "pyuv" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface for libuv";
|
|
homepage = "https://github.com/saghul/pyuv";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|