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
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "das";
|
|
version = "1.0.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snovvcrash";
|
|
repo = "DivideAndScan";
|
|
tag = "v${version}";
|
|
hash = "sha256-WZmWpcBqxsNH96nVWwoepFhsvdxZpYKmAjNd7ghIJMA=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"dash"
|
|
"defusedxml"
|
|
"netaddr"
|
|
"networkx"
|
|
"plotly"
|
|
];
|
|
|
|
build-system = with python3Packages; [ poetry-core ];
|
|
|
|
dependencies = with python3Packages; [
|
|
dash
|
|
defusedxml
|
|
dnspython
|
|
netaddr
|
|
networkx
|
|
pandas
|
|
plotly
|
|
python-nmap
|
|
scipy
|
|
tinydb
|
|
];
|
|
|
|
pythonImportsCheck = [ "das" ];
|
|
|
|
nativeCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
|
|
meta = {
|
|
description = "Divide full port scan results and use it for targeted Nmap runs";
|
|
homepage = "https://github.com/snovvcrash/DivideAndScan";
|
|
changelog = "https://github.com/snovvcrash/DivideAndScan/releases/tag/v${version}";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "das";
|
|
};
|
|
}
|