python3Packages.gevent: add some key reverse-dependencies to passthru.tests

This commit is contained in:
Robert Scott 2023-11-26 17:18:52 +00:00
parent faf7b4acbf
commit 22c8c101cc

View File

@ -13,6 +13,12 @@
, zope_event
, zope_interface
, pythonOlder
# for passthru.tests
, dulwich
, gunicorn
, opentracing
, pika
}:
buildPythonPackage rec {
@ -55,6 +61,14 @@ buildPythonPackage rec {
"gevent.events"
];
passthru.tests = {
inherit
dulwich
gunicorn
opentracing
pika;
} // lib.filterAttrs (k: v: lib.hasInfix "gevent" k) python.pkgs;
meta = with lib; {
description = "Coroutine-based networking library";
homepage = "http://www.gevent.org/";