mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
hekatomb: init at 1.5.14-unstable-2024-02-14
Tool to connect to LDAP directory to retrieve informations https://github.com/ProcessusT/HEKATOMB
This commit is contained in:
parent
62748bdf42
commit
fb8dcaef04
49
pkgs/by-name/he/hekatomb/package.nix
Normal file
49
pkgs/by-name/he/hekatomb/package.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
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
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user