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