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

python3Packages.nix-prefetch-github: 5.2.2 -> 6.0.0
This commit is contained in:
Jonas Heinrich 2023-01-10 15:54:35 +01:00 committed by GitHub
commit 098f772a6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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