5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
45 lines
852 B
Nix
45 lines
852 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, protobuf
|
|
, types-protobuf
|
|
, grpcio-tools
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mypy-protobuf";
|
|
version = "3.5.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-IfJw2gqXkqnax2sN9GPAJ+VhZkq2lzxZvk5NBk3+Z9w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
protobuf
|
|
types-protobuf
|
|
grpcio-tools
|
|
];
|
|
|
|
doCheck = false; # ModuleNotFoundError: No module named 'testproto'
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"mypy_protobuf"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Generate mypy stub files from protobuf specs";
|
|
homepage = "https://github.com/dropbox/mypy-protobuf";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lnl7 ];
|
|
};
|
|
}
|