python3Packages.mypy-protobuf: Add missing build inputs
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
parent
585e61d408
commit
c4b5000fac
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchPypi, buildPythonApplication, protobuf, pythonOlder }:
|
||||
{ lib, fetchPypi, buildPythonApplication, protobuf, types-protobuf, grpcio-tools, pythonOlder }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "mypy-protobuf";
|
||||
|
@ -11,7 +11,7 @@ buildPythonApplication rec {
|
|||
sha256 = "278172935d7121c2f8c7c0a05518dd565a2b76d9e9c4a0a3fcd08a21fa685d43";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ protobuf ];
|
||||
propagatedBuildInputs = [ protobuf types-protobuf grpcio-tools ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Generate mypy stub files from protobuf specs";
|
||||
|
|
Loading…
Reference in a new issue