depot/third_party/nixpkgs/pkgs/development/python-modules/pymongo/default.nix

54 lines
962 B
Nix
Raw Normal View History

{
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.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Y1SmayKPLNOZvnQpaF+2jgfxkRCjZ5eC7LT9to2gODE=";
};
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; [ ];
};
}