python311Packages.pymongo: add some key reverse-dependencies to passthru.tests

This commit is contained in:
Robert Scott 2024-04-22 23:14:30 +01:00
parent 29a7aae02b
commit f40e220998
1 changed files with 19 additions and 0 deletions

View File

@ -3,6 +3,14 @@
, fetchPypi
, pythonOlder
, dnspython
# for passthru.tests
, celery # check-input only
, flask-pymongo
, kombu # check-input only
, mongoengine
, motor
, pymongo-inmemory
}:
buildPythonPackage rec {
@ -26,6 +34,17 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pymongo" ];
passthru.tests = {
inherit
celery
flask-pymongo
kombu
mongoengine
motor
pymongo-inmemory
;
};
meta = with lib; {
description = "Python driver for MongoDB";
homepage = "https://github.com/mongodb/mongo-python-driver";