Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-protobuf / default.nix
blobc09cb206cf0409bfe3ea973879ef051debd8d5d7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , types-futures
5 }:
7 buildPythonPackage rec {
8   pname = "types-protobuf";
9   version = "4.24.0.20240311";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-yAQm+fubIa7lFGkelqsypc1pSoLirAeWSzUsPn4Bgrw=";
15   };
17   propagatedBuildInputs = [
18     types-futures
19   ];
21   # Module doesn't have tests
22   doCheck = false;
24   pythonImportsCheck = [
25     "google-stubs"
26   ];
28   meta = with lib; {
29     description = "Typing stubs for protobuf";
30     homepage = "https://github.com/python/typeshed";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ andersk ];
33   };