10 buildPythonPackage rec {
11 pname = "nix-prefetch-github";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
17 owner = "seppeljordan";
18 repo = "nix-prefetch-github";
20 sha256 = "sha256-+0s47YhpMojxmRHKC7kazov2ZUsOs2/Y2EmHAAcARf0=";
23 checkInputs = [ unittestCheckHook git which ];
25 # ignore tests which are impure
26 DISABLED_TESTS = "network requires_nix_build";
29 description = "Prefetch sources from github";
30 homepage = "https://github.com/seppeljordan/nix-prefetch-github";
31 license = licenses.gpl3;
32 maintainers = with maintainers; [ seppeljordan ];