python312Packages.sshfs: 2024.9.0 -> 2025.2.0 (#381808)

This commit is contained in:
Nick Cao
2025-02-13 16:56:08 -05:00
committed by GitHub

View File

@@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "sshfs";
version = "2024.9.0";
version = "2025.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fsspec";
repo = "sshfs";
tag = version;
hash = "sha256-rRcXimthyFLBqt0nMEv7bisL+JNLLZuRH7BopSLM7QQ=";
hash = "sha256-O9Va3dLfTko9AfyK4iJa8U6xrtJsNNEeBn9UeRAgmVc=";
};
build-system = [
@@ -69,7 +69,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "SSH/SFTP implementation for fsspec";
homepage = "https://github.com/fsspec/sshfs/";
changelog = "https://github.com/fsspec/sshfs/releases/tag/${version}";
changelog = "https://github.com/fsspec/sshfs/releases/tag/${src.tag}";
license = licenses.asl20;
maintainers = with maintainers; [ melling ];
};