Skip to content

Commit

Permalink
git-repo-updater: init at 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bdesham committed May 26, 2019
1 parent 567b63c commit 329731f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/tools/git-repo-updater/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ lib, buildPythonApplication, fetchPypi
, colorama, GitPython }:

buildPythonApplication rec {
pname = "gitup";
version = "0.5";

src = fetchPypi {
inherit pname version;
sha256 = "11ilz9i2yxrbipyjzpfkj7drx9wkrn3phvd1a60jivphbqdldpgf";
};

propagatedBuildInputs = [ colorama GitPython ];

meta = with lib; {
description = "Easily update multiple Git repositories at once";
homepage = "https://github.com/earwig/git-repo-updater";
license = licenses.mit;
maintainers = [ maintainers.bdesham ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,8 @@ in

git-fire = callPackage ../tools/misc/git-fire { };

git-repo-updater = python3Packages.callPackage ../development/tools/git-repo-updater { };

git-town = callPackage ../tools/misc/git-town { };

github-changelog-generator = callPackage ../development/tools/github-changelog-generator { };
Expand Down

0 comments on commit 329731f

Please sign in to comment.