From 20d60083caedcbae2a499f65072a11be88c8d578 Mon Sep 17 00:00:00 2001 From: Maximilian Knespel Date: Wed, 6 Mar 2024 23:18:53 +0100 Subject: [PATCH] python3Packages.ratarmountcore: Use fetchFromGitHub instead of fetchgit --- pkgs/development/python-modules/ratarmountcore/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ratarmountcore/default.nix b/pkgs/development/python-modules/ratarmountcore/default.nix index cca888423831..69c3de261534 100644 --- a/pkgs/development/python-modules/ratarmountcore/default.nix +++ b/pkgs/development/python-modules/ratarmountcore/default.nix @@ -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;