bbot: 2.8.0 -> 3.0.1

Changelog: https://github.com/blacklanternsecurity/bbot/releases/tag/3.0.1
This commit is contained in:
Fabian Affolter
2026-08-02 23:49:10 +02:00
parent 07be72210d
commit ed16686a54
+10 -7
View File
@@ -6,12 +6,12 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "bbot";
version = "2.8.6";
version = "3.0.1";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-u8F995BD1l6nPWYckMIYSgErSO3fBcU2IyBFU1WZjF8=";
hash = "sha256-2PmJFDvD1bFFO6AINU60P4yW7RGhcyFyZ6S9h42XqB4=";
};
pythonRelaxDeps = [
@@ -27,15 +27,15 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
"cloudcheck"
];
build-system = with python3.pkgs; [
poetry-core
poetry-dynamic-versioning
];
build-system = with python3.pkgs; [ hatchling ];
dependencies = with python3.pkgs; [
ansible-core
ansible-runner
asndb
beautifulsoup4
blastdns
blasthttp
cachetools
cloudcheck
deepdiff
@@ -47,6 +47,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
mmh3
omegaconf
orjson
pip
psutil
puremagic
pycryptodome
@@ -67,6 +68,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
yara-python
starlette
tornado
zstandard
];
# Project has no tests
@@ -74,7 +76,8 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
meta = {
description = "OSINT automation for hackers";
homepage = "https://pypi.org/project/bbot/";
homepage = "https://github.com/blacklanternsecurity/bbot";
changelog = "https://github.com/blacklanternsecurity/bbot/releases/tag/${finalAttrs.version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
fab