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