Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 20 lines 476 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pymongo"; 5 version = "3.11.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "db5098587f58fbf8582d9bda2462762b367207246d3e19623782fb449c3c5fcc"; 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}