biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / filesystems / sftpman / default.nix
blob579c03992ddefb4781fb49dbe2b75491d91da8fc
1 { lib, python3Packages, fetchFromGitHub }:
3 python3Packages.buildPythonApplication rec {
4   pname = "sftpman";
5   version = "1.2.2";
7   src = fetchFromGitHub {
8     owner = "spantaleev";
9     repo = pname;
10     rev = version;
11     hash = "sha256-YxqN4+u0nYUWehbyRhjddIo2sythH3E0fiPSyrUlWhM=";
12   };
14   checkPhase = ''
15     $out/bin/sftpman help
16   '';
18   meta = with lib; {
19     homepage = "https://github.com/spantaleev/sftpman";
20     description = "Application that handles sshfs/sftp file systems mounting";
21     license = licenses.gpl3;
22     platforms = platforms.unix;
23     maintainers = with maintainers; [ contrun ];
24     mainProgram = "sftpman";
25   };