2022-12-05 21:58:25 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, colorama
|
|
|
|
, fetchPypi
|
|
|
|
, gitpython
|
|
|
|
}:
|
2019-05-11 05:14:43 +02:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "gitup";
|
2020-03-31 07:11:30 +02:00
|
|
|
version = "0.5.1";
|
2019-05-11 05:14:43 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-03-31 07:11:30 +02:00
|
|
|
sha256 = "1pa612rcc94nc461zs9sag9p46sycc214622b06gdn35rmwp0y2g";
|
2019-05-11 05:14:43 +02:00
|
|
|
};
|
|
|
|
|
2022-12-05 21:58:25 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
colorama
|
|
|
|
gitpython
|
|
|
|
];
|
2019-05-11 05:14:43 +02:00
|
|
|
|
2021-01-31 22:55:15 +01:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-05-11 05:14:43 +02: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-05 21:58:25 +01:00
|
|
|
maintainers = with maintainers; [bdesham ];
|
2019-05-11 05:14:43 +02:00
|
|
|
};
|
|
|
|
}
|