python3Packages.ratarmountcore: Use fetchFromGitHub instead of fetchgit

This commit is contained in:
Maximilian Knespel
2024-04-07 11:16:25 +02:00
committed by mxmlnkn
parent ad85699bc1
commit 20d60083ca
@@ -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;