summary refs log tree commit diff
path: root/pkgs/development/python-modules/powerline
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-10-19 14:57:19 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-10-19 14:59:26 +0200
commit5c11622348ecdc5c7ed9aad2b86b8733342f10c7 (patch)
tree292958fd7ee2ec442f3bddbf00361efaedec13d5 /pkgs/development/python-modules/powerline
parentc8a7124c248c8caf8c5cb4fbe540aa595f6995cd (diff)
downloadnixpkgs-5c11622348ecdc5c7ed9aad2b86b8733342f10c7.tar
nixpkgs-5c11622348ecdc5c7ed9aad2b86b8733342f10c7.tar.gz
nixpkgs-5c11622348ecdc5c7ed9aad2b86b8733342f10c7.tar.bz2
nixpkgs-5c11622348ecdc5c7ed9aad2b86b8733342f10c7.tar.lz
nixpkgs-5c11622348ecdc5c7ed9aad2b86b8733342f10c7.tar.xz
nixpkgs-5c11622348ecdc5c7ed9aad2b86b8733342f10c7.tar.zst
nixpkgs-5c11622348ecdc5c7ed9aad2b86b8733342f10c7.zip
python.pkgs.powerline: remove vcs clients from propagatedBuildInputs
Diffstat (limited to 'pkgs/development/python-modules/powerline')
-rw-r--r--pkgs/development/python-modules/powerline/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/powerline/default.nix b/pkgs/development/python-modules/powerline/default.nix
index 86f5adb2824..028d81d2934 100644
--- a/pkgs/development/python-modules/powerline/default.nix
+++ b/pkgs/development/python-modules/powerline/default.nix
@@ -8,6 +8,9 @@
 , pygit2
 }:
 
+# The source of this package needs to be patched to include the full path to
+# the executables of git, mercurial and bazaar.
+
 buildPythonPackage rec {
   rev  = "2.6";
   name = "powerline-${rev}";
@@ -17,7 +20,7 @@ buildPythonPackage rec {
     sha256 = "c108f11fe10dc910febb94b87d3abded85d4363fb950366a9e30282b9ba7c272";
   };
 
-  propagatedBuildInputs = [ git mercurial bazaar psutil pygit2];
+  propagatedBuildInputs = [ psutil pygit2];
 
 # error: This is still beta and some tests still fail
   doCheck = false;