Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 476 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pymongo"; 5 version = "3.11.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "076a7f2f7c251635cf6116ac8e45eefac77758ee5a77ab7bd2f63999e957613b"; 10 }; 11 12 # Tests call a running mongodb instance 13 doCheck = false; 14 15 meta = with lib; { 16 homepage = "https://github.com/mongodb/mongo-python-driver"; 17 license = licenses.asl20; 18 description = "Python driver for MongoDB"; 19 }; 20}