Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5}: 6 7buildPythonPackage rec { 8 pname = "repocheck"; 9 version = "2015-08-05"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 sha256 = "1jc4v5zy7z7xlfmbfzvyzkyz893f5x2k6kvb3ni3rn2df7jqhc81"; 14 rev = "ee48d0e88d3f5814d24a8d1f22d5d83732824688"; 15 repo = "repocheck"; 16 owner = "kynikos"; 17 }; 18 19 meta = with lib; { 20 inherit (src.meta) homepage; 21 description = "Check the status of code repositories under a root directory"; 22 mainProgram = "repocheck"; 23 license = licenses.gpl3Plus; 24 }; 25}