Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
32 lines
617 B
Nix
32 lines
617 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 ];
|
|
mainProgram = "gitup";
|
|
};
|
|
}
|