python3Packages.pytest-grpc: init at 0.8.0

This commit is contained in:
Elliot Cameron
2023-05-30 10:39:32 -04:00
parent de3eaf5395
commit 4c5d2152b8
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, grpcio
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-grpc";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-C9JoP/00GZRE1wfAqwGXCyLgr7umyx3bbVeMhev+Cb0=";
};
buildInputs = [
pytest
];
propagatedBuildInputs = [
grpcio
];
meta = with lib; {
description = "pytest plugin for grpc";
homepage = "https://github.com/MobileDynasty/pytest-env";
license = licenses.mit;
maintainers = teams.deshaw.members;
};
}
+2
View File
@@ -9537,6 +9537,8 @@ self: super: with self; {
pytest-golden = callPackage ../development/python-modules/pytest-golden { };
pytest-grpc = callPackage ../development/python-modules/pytest-grpc { };
pytest-helpers-namespace = callPackage ../development/python-modules/pytest-helpers-namespace { };
pytest-html = callPackage ../development/python-modules/pytest-html { };