Loading pkgs/development/python-modules/sshfs/default.nix 0 → 100644 +30 −0 Original line number Diff line number Diff line { lib , asyncssh , bcrypt , buildPythonPackage , fetchPypi , fsspec , setuptools-scm }: buildPythonPackage rec { pname = "sshfs"; version = "2023.1.0"; src = fetchPypi { inherit pname version; hash = "sha256-syIVtAi7aPeVPJSKHdDJIArsYj0mtIAP104vR3Vb1UQ="; }; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ fsspec asyncssh bcrypt ]; meta = with lib; { description = "SSH/SFTP implementation for fsspec "; homepage = "https://pypi.org/project/sshfs/${version}"; changelog = "https://github.com/fsspec/sshfs/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ melling ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11180,6 +11180,8 @@ self: super: with self; { ssh-mitm = callPackage ../development/python-modules/ssh-mitm { }; sshfs = callPackage ../development/python-modules/sshfs { }; sshpubkeys = callPackage ../development/python-modules/sshpubkeys { }; sshtunnel = callPackage ../development/python-modules/sshtunnel { }; Loading Loading
pkgs/development/python-modules/sshfs/default.nix 0 → 100644 +30 −0 Original line number Diff line number Diff line { lib , asyncssh , bcrypt , buildPythonPackage , fetchPypi , fsspec , setuptools-scm }: buildPythonPackage rec { pname = "sshfs"; version = "2023.1.0"; src = fetchPypi { inherit pname version; hash = "sha256-syIVtAi7aPeVPJSKHdDJIArsYj0mtIAP104vR3Vb1UQ="; }; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ fsspec asyncssh bcrypt ]; meta = with lib; { description = "SSH/SFTP implementation for fsspec "; homepage = "https://pypi.org/project/sshfs/${version}"; changelog = "https://github.com/fsspec/sshfs/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ melling ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11180,6 +11180,8 @@ self: super: with self; { ssh-mitm = callPackage ../development/python-modules/ssh-mitm { }; sshfs = callPackage ../development/python-modules/sshfs { }; sshpubkeys = callPackage ../development/python-modules/sshpubkeys { }; sshtunnel = callPackage ../development/python-modules/sshtunnel { }; Loading