depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-grpc/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
573 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
grpcio,
pytest,
pytestCheckHook,
}:
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 = with lib; {
description = "pytest plugin for grpc";
homepage = "https://github.com/MobileDynasty/pytest-env";
license = licenses.mit;
maintainers = teams.deshaw.members;
};
}