mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
git-repo-updater: rename GitPython
This commit is contained in:
parent
61cb307ec7
commit
80fbc24e34
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user