summary refs log tree commit diff
path: root/pkgs/development/python-modules/protobuf.nix
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2017-02-26 11:03:27 +0100
committerEdward Tjörnhammar <ed@cflags.cc>2017-02-27 10:52:21 +0100
commita331662930f45f9ca4684dee6748696c57a68601 (patch)
treedddd6322f9ecf4fdf5c5844dd3f7969abe27cb13 /pkgs/development/python-modules/protobuf.nix
parent421db29915d0db88144f0de374f7f2c784c49b37 (diff)
downloadnixlib-a331662930f45f9ca4684dee6748696c57a68601.tar
nixlib-a331662930f45f9ca4684dee6748696c57a68601.tar.gz
nixlib-a331662930f45f9ca4684dee6748696c57a68601.tar.bz2
nixlib-a331662930f45f9ca4684dee6748696c57a68601.tar.lz
nixlib-a331662930f45f9ca4684dee6748696c57a68601.tar.xz
nixlib-a331662930f45f9ca4684dee6748696c57a68601.tar.zst
nixlib-a331662930f45f9ca4684dee6748696c57a68601.zip
pythonPackages.protobuf: add pyext dependency
Diffstat (limited to 'pkgs/development/python-modules/protobuf.nix')
-rw-r--r--pkgs/development/python-modules/protobuf.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/protobuf.nix b/pkgs/development/python-modules/protobuf.nix
index 8b9d1ddb03c4..f2f0f5025d11 100644
--- a/pkgs/development/python-modules/protobuf.nix
+++ b/pkgs/development/python-modules/protobuf.nix
@@ -1,5 +1,5 @@
 { stdenv, python, buildPythonPackage
-, protobuf, google_apputils
+, protobuf, google_apputils, pyext
 , disabled, doCheck ? true }:
 
 with stdenv.lib;
@@ -9,7 +9,7 @@ buildPythonPackage rec {
   inherit disabled doCheck;
 
   propagatedBuildInputs = [ protobuf google_apputils ];
-  buildInputs = [ google_apputils ];
+  buildInputs = [ google_apputils pyext ];
 
   prePatch = ''
     while [ ! -d python ]; do