mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
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";
|
|
};
|
|
}
|