Files
nixpkgs/pkgs/development/python-modules/pymongo/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

54 lines
944 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.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 = [ ];
};
}