mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 21:14:52 +00:00
python3Packages.gevent: add some key reverse-dependencies to passthru.tests
This commit is contained in:
parent
faf7b4acbf
commit
22c8c101cc
@ -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/";
|
||||
|
Loading…
Reference in New Issue
Block a user