c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
44 lines
1,008 B
Nix
44 lines
1,008 B
Nix
{ fetchFromGitHub
|
|
, lib
|
|
, buildPythonPackage
|
|
, git
|
|
, which
|
|
, pythonOlder
|
|
, unittestCheckHook
|
|
, sphinxHook
|
|
, sphinx-argparse
|
|
, parameterized
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nix-prefetch-github";
|
|
version = "7.1.0";
|
|
pyproject = true;
|
|
|
|
outputs = [ "out" "man" ];
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "seppeljordan";
|
|
repo = "nix-prefetch-github";
|
|
rev = "v${version}";
|
|
hash = "sha256-eQd/MNlnuzXzgFzvwUMchvHoIvkIrbpGKV7iknO14Cc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ sphinxHook sphinx-argparse setuptools ];
|
|
nativeCheckInputs = [ unittestCheckHook git which parameterized ];
|
|
|
|
sphinxBuilders = [ "man" ];
|
|
sphinxRoot = "docs";
|
|
|
|
# ignore tests which are impure
|
|
DISABLED_TESTS = "network requires_nix_build";
|
|
|
|
meta = with lib; {
|
|
description = "Prefetch sources from github";
|
|
homepage = "https://github.com/seppeljordan/nix-prefetch-github";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ seppeljordan ];
|
|
};
|
|
}
|