Merge #299503: python3Packages.gevent: avoid use of vendored libraries

...into staging
This commit is contained in:
Vladimír Čunát 2024-04-10 08:18:45 +02:00
commit 6d64f86995
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -13,6 +13,8 @@
, zope-event , zope-event
, zope-interface , zope-interface
, pythonOlder , pythonOlder
, c-ares
, libuv
# for passthru.tests # for passthru.tests
, dulwich , dulwich
@ -43,6 +45,8 @@ buildPythonPackage rec {
buildInputs = [ buildInputs = [
libev libev
libuv
c-ares
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -69,6 +73,8 @@ buildPythonPackage rec {
pika; pika;
} // lib.filterAttrs (k: v: lib.hasInfix "gevent" k) python.pkgs; } // lib.filterAttrs (k: v: lib.hasInfix "gevent" k) python.pkgs;
GEVENTSETUP_EMBED = "0";
meta = with lib; { meta = with lib; {
description = "Coroutine-based networking library"; description = "Coroutine-based networking library";
homepage = "http://www.gevent.org/"; homepage = "http://www.gevent.org/";