mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
44 lines
929 B
Nix
44 lines
929 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "smbclient-ng";
|
|
version = "2.1.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "p0dalirius";
|
|
repo = "smbclient-ng";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-T1OAiRL7AGMz12dFIPOESS77lVd62iaBt9vXCdzqJBQ=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|