Commit ac57f9ba authored by Matt Melling's avatar Matt Melling Committed by Fabian Affolter
Browse files

python3Packages.sshfs: init at 2023.1.0

parent cd255a66
Loading
Loading
Loading
Loading
+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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };