summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2015-02-11 10:21:51 +0100
committerDomen Kožar <domen@dev.si>2015-02-11 10:21:51 +0100
commit2024e08564ece8ba332d52b88a44d89b525a8124 (patch)
tree2b744f501398d19a83a79244ce0d9a1ad009a3bd /pkgs/top-level
parent4869902a70808d78bd8ff0efc3ba7d6944cb9288 (diff)
downloadnixlib-2024e08564ece8ba332d52b88a44d89b525a8124.tar
nixlib-2024e08564ece8ba332d52b88a44d89b525a8124.tar.gz
nixlib-2024e08564ece8ba332d52b88a44d89b525a8124.tar.bz2
nixlib-2024e08564ece8ba332d52b88a44d89b525a8124.tar.lz
nixlib-2024e08564ece8ba332d52b88a44d89b525a8124.tar.xz
nixlib-2024e08564ece8ba332d52b88a44d89b525a8124.tar.zst
nixlib-2024e08564ece8ba332d52b88a44d89b525a8124.zip
partially fix pythonPackages.protobuf
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 5901a51c93e3..edec3a537beb 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -7489,9 +7489,8 @@ let
   protobuf = buildPythonPackage rec {
     inherit (pkgs.protobuf) name src;
 
-    propagatedBuildInputs = with self; [ pkgs.protobuf google_apputils  ];
-    sourceRoot = "${name}/python";
-
+    propagatedBuildInputs = with self; [ pkgs.protobuf google_apputils ];
+    sourceRoot = "${name}-src/python";
 
     meta = {
       description = "Protocol Buffers are Google's data interchange format";