0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 08:31:01 +03:00

python312Packages.sshfs: 2024.4.1 -> 2024.6.0 (#339316)

This commit is contained in:
Fabian Affolter 2024-09-04 09:18:04 +02:00 committed by GitHub
commit d56fead2eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,11 +1,12 @@
{
stdenv,
lib,
stdenv,
asyncssh,
bcrypt,
buildPythonPackage,
fetchFromGitHub,
fsspec,
importlib-metadata,
mock-ssh-server,
pytest-asyncio,
pytestCheckHook,
@ -15,30 +16,39 @@
buildPythonPackage rec {
pname = "sshfs";
version = "2024.4.1";
version = "2024.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fsspec";
repo = "sshfs";
rev = "refs/tags/${version}";
hash = "sha256-qkEojf/3YBMoYbRt0Q93MJYXyL9AWR24AEe3/zdn58U=";
hash = "sha256-8Vut/JDLmWrTys8aaIBRbaWlvGCg6edaXmMCFxjGhag=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
asyncssh
bcrypt
fsspec
];
optional-dependencies = {
bcrypt = [ asyncssh ] ++ asyncssh.optional-dependencies.bcrypt;
fido2 = [ asyncssh ] ++ asyncssh.optional-dependencies.fido2;
gssapi = [ asyncssh ] ++ asyncssh.optional-dependencies.gssapi;
libnacl = [ asyncssh ] ++ asyncssh.optional-dependencies.libnacl;
pkcs11 = [ asyncssh ] ++ asyncssh.optional-dependencies.python-pkcs11;
pyopenssl = [ asyncssh ] ++ asyncssh.optional-dependencies.pyopenssl;
};
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
importlib-metadata
mock-ssh-server
pytest-asyncio
pytestCheckHook