From a7ed0eade0d12de714b08371dd066f0e94b3cf73 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 25 Sep 2024 11:06:37 +0200 Subject: [PATCH] smbclient-ng: init at 2.1.5 Tool to interact with SMB shares https://github.com/p0dalirius/smbclient-ng --- pkgs/by-name/sm/smbclient-ng/package.nix | 43 ++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pkgs/by-name/sm/smbclient-ng/package.nix diff --git a/pkgs/by-name/sm/smbclient-ng/package.nix b/pkgs/by-name/sm/smbclient-ng/package.nix new file mode 100644 index 0000000000000..7e4d4ef7cff9c --- /dev/null +++ b/pkgs/by-name/sm/smbclient-ng/package.nix @@ -0,0 +1,43 @@ +{ + lib, + fetchFromGitHub, + python3, +}: + +python3.pkgs.buildPythonApplication rec { + pname = "smbclient-ng"; + version = "2.1.5"; + pyproject = true; + + src = fetchFromGitHub { + owner = "p0dalirius"; + repo = "smbclient-ng"; + rev = "refs/tags/${version}"; + hash = "sha256-5ObqmCvMoBuQOPbQATrIVzxnxrJtvB+iUJSS7sqs6hI="; + }; + + pythonRelaxDeps = [ + "impacket" + "pefile" + ]; + + build-system = with python3.pkgs; [ poetry-core ]; + + dependencies = with python3.pkgs; [ + charset-normalizer + impacket + pefile + rich + ]; + + pythonImportsCheck = [ "smbclientng" ]; + + meta = { + description = "Tool to interact with SMB shares"; + homepage = "https://github.com/p0dalirius/smbclient-ng"; + changelog = "https://github.com/p0dalirius/smbclient-ng/releases/tag/${version}"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ fab ]; + mainProgram = "smbclientng"; + }; +}