nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 35 lines 772 B view raw
1{ 2 lib, 3 python3Packages, 4 fetchFromGitHub, 5}: 6 7python3Packages.buildPythonApplication rec { 8 pname = "sftpman"; 9 version = "1.2.2"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "spantaleev"; 14 repo = "sftpman"; 15 rev = version; 16 hash = "sha256-YxqN4+u0nYUWehbyRhjddIo2sythH3E0fiPSyrUlWhM="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 checkPhase = '' 22 $out/bin/sftpman help 23 ''; 24 25 pythonImportsCheck = [ "sftpman" ]; 26 27 meta = with lib; { 28 homepage = "https://github.com/spantaleev/sftpman"; 29 description = "Application that handles sshfs/sftp file systems mounting"; 30 license = licenses.gpl3; 31 platforms = platforms.unix; 32 maintainers = with maintainers; [ contrun ]; 33 mainProgram = "sftpman"; 34 }; 35}