git-up: rename GitPython
This commit is contained in:
parent
80fbc24e34
commit
40ab86df5e
1 changed files with 14 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
{ lib, pythonPackages, git }:
|
||||
{ lib
|
||||
, pythonPackages
|
||||
, git
|
||||
}:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
pname = "git-up";
|
||||
|
@ -10,7 +13,16 @@ pythonPackages.buildPythonApplication rec {
|
|||
};
|
||||
|
||||
# git should be on path for tool to work correctly
|
||||
propagatedBuildInputs = [ git ] ++ (with pythonPackages; [ click colorama docopt GitPython six termcolor ]);
|
||||
propagatedBuildInputs = [
|
||||
git
|
||||
] ++ (with pythonPackages; [
|
||||
click
|
||||
colorama
|
||||
docopt
|
||||
gitpython
|
||||
six
|
||||
termcolor
|
||||
]);
|
||||
|
||||
checkInputs = [ git pythonPackages.nose ]; # git needs to be on path
|
||||
# 1. git fails to run as it cannot detect the email address, so we set it
|
||||
|
|
Loading…
Reference in a new issue