git-up: rename GitPython

This commit is contained in:
Fabian Affolter 2022-12-05 22:00:57 +01:00
parent 80fbc24e34
commit 40ab86df5e

View file

@ -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