Files
nixpkgs/pkgs/development/python-modules/certipy-ad/default.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

78 lines
1.4 KiB
Nix

{
lib,
argcomplete,
asn1crypto,
beautifulsoup4,
buildPythonPackage,
cryptography,
dnspython,
dsinternals,
fetchFromGitHub,
httpx,
impacket,
ldap3,
pyasn1,
pycryptodome,
pyopenssl,
requests,
setuptools,
unicrypto,
}:
buildPythonPackage rec {
pname = "certipy-ad";
version = "5.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "ly4k";
repo = "Certipy";
tag = version;
hash = "sha256-rS2d7jYHzmb2x6wKJizKrkna2xKrTAGwpSANnmbU16I=";
};
pythonRelaxDeps = [
"argcomplete"
"cryptography"
"pycryptodome"
"ldap3"
"pyopenssl"
];
pythonRemoveDeps = [ "bs4" ];
build-system = [ setuptools ];
dependencies = [
argcomplete
asn1crypto
beautifulsoup4
cryptography
dnspython
dsinternals
httpx
impacket
ldap3
pyasn1
pycryptodome
pyopenssl
requests
setuptools
unicrypto
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "certipy" ];
meta = with lib; {
description = "Library and CLI tool to enumerate and abuse misconfigurations in Active Directory Certificate Services";
homepage = "https://github.com/ly4k/Certipy";
changelog = "https://github.com/ly4k/Certipy/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "certipy";
};
}