git-repo-updater: rename GitPython

This commit is contained in:
Fabian Affolter 2022-12-05 21:58:25 +01:00
parent 61cb307ec7
commit 80fbc24e34

View File

@ -1,5 +1,9 @@
{ lib, buildPythonApplication, fetchPypi
, colorama, GitPython }:
{ lib
, buildPythonApplication
, colorama
, fetchPypi
, gitpython
}:
buildPythonApplication rec {
pname = "gitup";
@ -10,7 +14,10 @@ buildPythonApplication rec {
sha256 = "1pa612rcc94nc461zs9sag9p46sycc214622b06gdn35rmwp0y2g";
};
propagatedBuildInputs = [ colorama GitPython ];
propagatedBuildInputs = [
colorama
gitpython
];
# no tests
doCheck = false;
@ -19,7 +26,6 @@ buildPythonApplication rec {
description = "Easily update multiple Git repositories at once";
homepage = "https://github.com/earwig/git-repo-updater";
license = licenses.mit;
maintainers = [ maintainers.bdesham ];
platforms = platforms.all;
maintainers = with maintainers; [bdesham ];
};
}