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
45 lines
905 B
Nix
45 lines
905 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "nbutools";
|
|
version = "0-unstable-2023-06-06";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "airbus-seclab";
|
|
repo = "nbutools";
|
|
rev = "d82fb96d5623e7d3076cc0a1db06a640f63b9552";
|
|
hash = "sha256-YOiFlTIDpeTFOHPU37v0pYf8s3HdaE/4pnd9qrsFtSI=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
aiodns
|
|
aiohttp
|
|
beautifulsoup4
|
|
graphviz
|
|
jaydebeapi
|
|
jpype1
|
|
lxml
|
|
pycryptodome
|
|
requests
|
|
scapy
|
|
tabulate
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Tools for offensive security of NetBackup infrastructures";
|
|
homepage = "https://github.com/airbus-seclab/nbutools";
|
|
license = with licenses; [ gpl2Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|