diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e1c2a98d17f..8f4a3cb6321 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";