summary refs log tree commit diff
path: root/pkgs/development/python-modules/protobuf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/protobuf/default.nix')
-rw-r--r--pkgs/development/python-modules/protobuf/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/protobuf/default.nix b/pkgs/development/python-modules/protobuf/default.nix
index 595bab6cfa357..4925c3dfd02fb 100644
--- a/pkgs/development/python-modules/protobuf/default.nix
+++ b/pkgs/development/python-modules/protobuf/default.nix
@@ -5,7 +5,7 @@
 , buildPythonPackage
 , isPy37
 , protobuf
-, google_apputils
+, google-apputils
 , six
 , pyext
 , libcxx
@@ -29,9 +29,9 @@ buildPythonPackage {
 
   outputs = [ "out" "dev" ];
 
-  propagatedBuildInputs = [ six ] ++ optionals isPy27 [ google_apputils ];
+  propagatedBuildInputs = [ six ] ++ optionals isPy27 [ google-apputils ];
   propagatedNativeBuildInputs = [ buildPackages.protobuf ]; # For protoc.
-  nativeBuildInputs = [ pyext ] ++ optionals isPy27 [ google_apputils ];
+  nativeBuildInputs = [ pyext ] ++ optionals isPy27 [ google-apputils ];
   buildInputs = [ protobuf ];
 
   patches = optional (isPy37 && (versionOlder protobuf.version "3.6.1.2"))