Files
nixpkgs/pkgs/by-name/he/hekatomb/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

50 lines
959 B
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication {
pname = "hekatomb";
version = "1.5.14-unstable-2024-02-14";
pyproject = true;
src = fetchFromGitHub {
owner = "ProcessusT";
repo = "HEKATOMB";
rev = "8cd372fd5d93e8b43c2cbe2ab2cada635f00e9dd";
hash = "sha256-2juP2SuCfY4z2J27BlodrsP+29BjGxKDIDOW0mmwCPY=";
};
pythonRelaxDeps = [
"impacket"
];
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
chardet
dnspython
impacket
ldap3
pycryptodomex
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"hekatomb"
];
meta = with lib; {
description = "Tool to connect to LDAP directory to retrieve informations";
homepage = "https://github.com/ProcessusT/HEKATOMB";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "hekatomb";
};
}