Merge pull request #289125 from seppeljordan/update-nix-prefetch-github

python3Packages.nix-prefetch-github: v7.0.0 -> v7.1.0

authored by

Thiago Kenji Okada and committed by
GitHub
f9d40ef7 4225d178

+14 -5
+14 -5
pkgs/development/python-modules/nix-prefetch-github/default.nix
··· 5 , which 6 , pythonOlder 7 , unittestCheckHook 8 }: 9 10 buildPythonPackage rec { 11 pname = "nix-prefetch-github"; 12 - version = "7.0.0"; 13 - format = "setuptools"; 14 15 - disabled = pythonOlder "3.8"; 16 17 src = fetchFromGitHub { 18 owner = "seppeljordan"; 19 repo = "nix-prefetch-github"; 20 rev = "v${version}"; 21 - hash = "sha256-oIR2iEiOBQ1VKouJTLqEiWWNzrMSJcnxK+m/j9Ia/m8="; 22 }; 23 24 - nativeCheckInputs = [ unittestCheckHook git which ]; 25 26 # ignore tests which are impure 27 DISABLED_TESTS = "network requires_nix_build";
··· 5 , which 6 , pythonOlder 7 , unittestCheckHook 8 + , sphinxHook 9 + , sphinx-argparse 10 + , parameterized 11 + , setuptools 12 }: 13 14 buildPythonPackage rec { 15 pname = "nix-prefetch-github"; 16 + version = "7.1.0"; 17 + pyproject = true; 18 19 + outputs = [ "out" "man" ]; 20 + disabled = pythonOlder "3.9"; 21 22 src = fetchFromGitHub { 23 owner = "seppeljordan"; 24 repo = "nix-prefetch-github"; 25 rev = "v${version}"; 26 + hash = "sha256-eQd/MNlnuzXzgFzvwUMchvHoIvkIrbpGKV7iknO14Cc="; 27 }; 28 29 + nativeBuildInputs = [ sphinxHook sphinx-argparse setuptools ]; 30 + nativeCheckInputs = [ unittestCheckHook git which parameterized ]; 31 + 32 + sphinxBuilders = [ "man" ]; 33 + sphinxRoot = "docs"; 34 35 # ignore tests which are impure 36 DISABLED_TESTS = "network requires_nix_build";