Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, grpcio 5, pytest 6, pytestCheckHook 7}: 8 9buildPythonPackage rec { 10 pname = "pytest-grpc"; 11 version = "0.8.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-C9JoP/00GZRE1wfAqwGXCyLgr7umyx3bbVeMhev+Cb0="; 16 }; 17 18 buildInputs = [ 19 pytest 20 ]; 21 22 propagatedBuildInputs = [ 23 grpcio 24 ]; 25 26 meta = with lib; { 27 description = "pytest plugin for grpc"; 28 homepage = "https://github.com/MobileDynasty/pytest-env"; 29 license = licenses.mit; 30 maintainers = teams.deshaw.members; 31 }; 32}