5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
54 lines
953 B
Nix
54 lines
953 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, dnspython
|
|
|
|
# for passthru.tests
|
|
, celery # check-input only
|
|
, flask-pymongo
|
|
, kombu # check-input only
|
|
, mongoengine
|
|
, motor
|
|
, pymongo-inmemory
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymongo";
|
|
version = "4.6.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QAB0CQuaYx8SC0LGGyIv10NJDBM6XS+ZwCCM78zMlk4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dnspython
|
|
];
|
|
|
|
# Tests call a running mongodb instance
|
|
doCheck = false;
|
|
|
|
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";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|