Files
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

58 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "offensive-azure";
# nixpkgs-update: no auto update
version = "0.4.10";
format = "pyproject";
src = fetchFromGitHub {
owner = "blacklanternsecurity";
repo = "offensive-azure";
rev = "v${version}";
hash = "sha256-5JHix+/uGGhXM89VLimI81g4evci5ZUtNV1c1xopjuI=";
};
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [
certifi
charset-normalizer
colorama
dnspython
idna
pycryptodome
python-whois
requests
requests
];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
];
postPatch = ''
# Use default Python module
substituteInPlace pyproject.toml \
--replace 'uuid = "^1.30"' "" \
--replace 'python-whois = "^0.7.3"' 'python-whois = "*"'
'';
pythonImportsCheck = [
"offensive_azure"
];
meta = with lib; {
description = "Collection of offensive tools targeting Microsoft Azure";
homepage = "https://github.com/blacklanternsecurity/offensive-azure";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}