Skip to content

Commit

Permalink
python312Packages.sshfs: 2024.4.1 -> 2024.6.0 (#339316)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Sep 4, 2024
2 parents 89c9fad + a6c3552 commit d56fead
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions pkgs/development/python-modules/sshfs/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
stdenv,
lib,
stdenv,
asyncssh,
bcrypt,
buildPythonPackage,
fetchFromGitHub,
fsspec,
importlib-metadata,
mock-ssh-server,
pytest-asyncio,
pytestCheckHook,
Expand All @@ -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
Expand Down

0 comments on commit d56fead

Please sign in to comment.