d022acdf6e
Diff: https://github.com/fsspec/sshfs/compare/refs/tags/2023.1.0...2023.4.1 Changelog: https://github.com/fsspec/sshfs/releases/tag/2023.4.1
53 lines
973 B
Nix
53 lines
973 B
Nix
{ lib
|
|
, asyncssh
|
|
, bcrypt
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fsspec
|
|
, mock-ssh-server
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sshfs";
|
|
version = "2023.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fsspec";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-qoOqKXtmavKgfbg6bBEeZb+n1RVyZSxqhKIQsToxDUU=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
asyncssh
|
|
bcrypt
|
|
fsspec
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock-ssh-server
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"sshfs"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "SSH/SFTP implementation for fsspec";
|
|
homepage = "https://github.com/fsspec/sshfs/";
|
|
changelog = "https://github.com/fsspec/sshfs/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ melling ];
|
|
};
|
|
}
|