Skip to content

Commit

Permalink
python3Packages.mypy-protobuf: Add missing build inputs
Browse files Browse the repository at this point in the history
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Loading branch information
andersk committed Sep 16, 2021
1 parent 424236e commit 8ae61d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/mypy-protobuf/default.nix
@@ -1,4 +1,4 @@
{ lib, fetchPypi, buildPythonApplication, protobuf, pythonOlder }:
{ lib, fetchPypi, buildPythonApplication, protobuf, types-protobuf, grpcio-tools, pythonOlder }:

buildPythonApplication rec {
pname = "mypy-protobuf";
Expand All @@ -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";
Expand Down

0 comments on commit 8ae61d0

Please sign in to comment.