snallygaster: 0.0.14 -> 0.0.15 (#450100)

This commit is contained in:
Fabian Affolter
2025-10-09 06:45:23 +00:00
committed by GitHub
+6 -8
View File
@@ -6,17 +6,20 @@
python3Packages.buildPythonApplication rec {
pname = "snallygaster";
version = "0.0.14";
version = "0.0.15";
pyproject = true;
src = fetchFromGitHub {
owner = "hannob";
repo = "snallygaster";
tag = "v${version}";
hash = "sha256-H5rptK12p5dRKYjoQ6Nr8hxq8pL/3jFDgX1gnRZABTo=";
hash = "sha256-t6xNRPISlPaxlwW/infW9qnxguc/wF7XpbFPzZRcgDA=";
};
build-system = with python3Packages; [ setuptools ];
build-system = with python3Packages; [
setuptools
setuptools-scm
];
dependencies = with python3Packages; [
dnspython
@@ -26,11 +29,6 @@ python3Packages.buildPythonApplication rec {
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
disabledTestPaths = [
# we are not interested in linting the project
"tests/test_codingstyle.py"
];
meta = with lib; {
description = "Tool to scan for secret files on HTTP servers";
homepage = "https://github.com/hannob/snallygaster";