blob: 2a50446c13424f1ec56b483e065d1e4f2fb0e8e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
types-futures,
}:
buildPythonPackage rec {
pname = "types-protobuf";
version = "6.32.1.20251210";
format = "setuptools";
src = fetchPypi {
pname = "types_protobuf";
inherit version;
hash = "sha256-xpi7PwICdLGieYrgncdzcozj91IJo1GHvRGRbr/eZ2M=";
};
propagatedBuildInputs = [ types-futures ];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "google-stubs" ];
meta = {
description = "Typing stubs for protobuf";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ andersk ];
};
}
|