blob: ccb040464e9381bed5a934c18fb1ee469fa11600 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
grpcio,
pytest,
}:
buildPythonPackage rec {
pname = "pytest-grpc";
version = "0.8.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-C9JoP/00GZRE1wfAqwGXCyLgr7umyx3bbVeMhev+Cb0=";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ grpcio ];
meta = {
description = "Pytest plugin for grpc";
homepage = "https://github.com/MobileDynasty/pytest-env";
license = lib.licenses.mit;
teams = [ lib.teams.deshaw ];
};
}
|