a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
31 lines
590 B
Nix
31 lines
590 B
Nix
{ lib
|
|
, buildPythonApplication
|
|
, colorama
|
|
, fetchPypi
|
|
, gitpython
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "gitup";
|
|
version = "0.5.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1pa612rcc94nc461zs9sag9p46sycc214622b06gdn35rmwp0y2g";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
colorama
|
|
gitpython
|
|
];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Easily update multiple Git repositories at once";
|
|
homepage = "https://github.com/earwig/git-repo-updater";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [bdesham ];
|
|
};
|
|
}
|