evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / types-protobuf / default.nix
blob885cfe353e2445c133e2f9ff4e3e3cc8fbdcfc83
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   types-futures,
6 }:
8 buildPythonPackage rec {
9   pname = "types-protobuf";
10   version = "5.28.0.20240924";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-0YGviiVuWpHOjVrbU0luiA79kUTH1USD42UzMrYClvA=";
16   };
18   propagatedBuildInputs = [ types-futures ];
20   # Module doesn't have tests
21   doCheck = false;
23   pythonImportsCheck = [ "google-stubs" ];
25   meta = with lib; {
26     description = "Typing stubs for protobuf";
27     homepage = "https://github.com/python/typeshed";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ andersk ];
30   };