7 python3.pkgs.buildPythonApplication rec {
8 pname = "smbclient-ng";
12 src = fetchFromGitHub {
14 repo = "smbclient-ng";
15 rev = "refs/tags/${version}";
16 hash = "sha256-T1OAiRL7AGMz12dFIPOESS77lVd62iaBt9vXCdzqJBQ=";
24 build-system = with python3.pkgs; [ poetry-core ];
26 dependencies = with python3.pkgs; [
33 pythonImportsCheck = [ "smbclientng" ];
36 description = "Tool to interact with SMB shares";
37 homepage = "https://github.com/p0dalirius/smbclient-ng";
38 changelog = "https://github.com/p0dalirius/smbclient-ng/releases/tag/${version}";
39 license = lib.licenses.gpl3Only;
40 maintainers = with lib.maintainers; [ fab ];
41 mainProgram = "smbclientng";