python3Packages.nix-prefetch-github: 5.2.2 -> 6.0.0

This commit is contained in:
Sebastian Jordan 2023-01-09 05:04:36 +01:00
parent a518c77148
commit 5b526b5a87

View file

@ -9,15 +9,15 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "nix-prefetch-github"; pname = "nix-prefetch-github";
version = "5.2.2"; version = "6.0.0";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "seppeljordan"; owner = "seppeljordan";
repo = "nix-prefetch-github"; repo = "nix-prefetch-github";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-+0s47YhpMojxmRHKC7kazov2ZUsOs2/Y2EmHAAcARf0="; sha256 = "YobBihNPbqYYWhe3x0p+BIlEK8R62s/dDFWUzP7fCTI=";
}; };
checkInputs = [ unittestCheckHook git which ]; checkInputs = [ unittestCheckHook git which ];