python-packages: add repocheck 2015-05-04

This script gives status information for code repositories found
recursively under a root directory. In particular, it tells whether
there are uncommitted changes, untracked files, unpushed or unpulled
commits. Thanks to the -u option, it is also useful to fetch updates
for all the remotes in the encountered repositories.
This commit is contained in:
Tobias Geerinckx-Rice 2015-05-04 16:15:43 +02:00
parent 2c62a0a930
commit d80f6f8d6f

View File

@ -10526,6 +10526,24 @@ let
};
};
repocheck = buildPythonPackage rec {
name = "repocheck-2015-05-04";
disabled = isPy26 || isPy27;
src = pkgs.fetchFromGitHub {
sha256 = "0zk8n4sm7i488wgqljkfjd2j0hm0qimxr9dhdz6d7xal7apwh71x";
rev = "db8c336f071ead3375805b7a78ca3d7c862536db";
repo = "repocheck";
owner = "kynikos";
};
meta = {
description = "Check the status of code repositories under a root directory";
homepage = https://github.com/kynikos/repocheck;
license = with licenses; gpl3Plus;
maintainers = with maintainers; [ nckx ];
};
};
requests_oauth2 = buildPythonPackage rec {
name = "requests-oauth2-0.1.1";