2022-12-17 10:02:37 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, colorama
|
|
|
|
, fetchPypi
|
|
|
|
, gitpython
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "gitup";
|
|
|
|
version = "0.5.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1pa612rcc94nc461zs9sag9p46sycc214622b06gdn35rmwp0y2g";
|
|
|
|
};
|
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
colorama
|
|
|
|
gitpython
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Easily update multiple Git repositories at once";
|
|
|
|
homepage = "https://github.com/earwig/git-repo-updater";
|
|
|
|
license = licenses.mit;
|
2022-12-17 10:02:37 +00:00
|
|
|
maintainers = with maintainers; [bdesham ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|