python3Packages.ratarmountcore: Use fetchFromGitHub instead of fetchgit

This commit is contained in:
Maximilian Knespel 2024-03-06 23:18:53 +01:00 committed by mxmlnkn
parent ad85699bc1
commit 20d60083ca
1 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
, fetchgit
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, indexed-bzip2
@ -20,8 +20,9 @@ buildPythonPackage rec {
disabled = pythonOlder "3.6";
src = fetchgit {
url = "https://github.com/mxmlnkn/ratarmount";
src = fetchFromGitHub {
owner = "mxmlnkn";
repo = "ratarmount";
rev = "core-v${version}";
hash = "sha256-2jG066BUkhyHRqRyFAucQRJrjXQNw2ccCxERKkltO3Y=";
fetchSubmodules = true;