biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pytest-grpc / default.nix
blob18fa92f9279d298c9e5c78f341c7c3927a6f0f9d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   grpcio,
6   pytest,
7 }:
9 buildPythonPackage rec {
10   pname = "pytest-grpc";
11   version = "0.8.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-C9JoP/00GZRE1wfAqwGXCyLgr7umyx3bbVeMhev+Cb0=";
17   };
19   buildInputs = [ pytest ];
21   propagatedBuildInputs = [ grpcio ];
23   meta = with lib; {
24     description = "pytest plugin for grpc";
25     homepage = "https://github.com/MobileDynasty/pytest-env";
26     license = licenses.mit;
27     maintainers = teams.deshaw.members;
28   };