Merge pull request #306350 from risicle/ris-pymongo-passthru-tests

python311Packages.pymongo: add some key reverse-dependencies to `passthru.tests`
This commit is contained in:
Thomas Gerbet 2024-04-27 09:53:43 +02:00 committed by GitHub
commit f2b03cee68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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";