python3Packages.types-protobuf: init at 3.17.4

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg 2021-09-16 15:28:46 -07:00 committed by Jonathan Ringer
parent ce180d22e2
commit 585e61d408
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ buildPythonPackage, fetchPypi, lib, types-futures }:
buildPythonPackage rec {
pname = "types-protobuf";
version = "3.17.4";
src = fetchPypi {
inherit pname version;
sha256 = "0r42kzspqna2b2jiz9bjzagrd4gbh0sd6jp4v7i9nv09y0ifrkrn";
};
propagatedBuildInputs = [ types-futures ];
meta = with lib; {
description = "Typing stubs for protobuf";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ andersk ];
};
}

View File

@ -9135,6 +9135,8 @@ in {
types-futures = callPackage ../development/python-modules/types-futures { };
types-protobuf = callPackage ../development/python-modules/types-protobuf { };
types-pytz = callPackage ../development/python-modules/types-pytz { };
types-requests = callPackage ../development/python-modules/types-requests { };