snallygaster: 0.0.12 -> 0.0.13 (#356411)

This commit is contained in:
Nick Cao 2024-11-17 09:10:24 -05:00 committed by GitHub
commit 8447f0f3e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,28 +1,30 @@
{ lib
, python3Packages
, fetchFromGitHub
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "snallygaster";
version = "0.0.12";
version = "0.0.13";
pyproject = true;
src = fetchFromGitHub {
owner = "hannob";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JXuRCUWpoGhBbU38XMEQovCiVfbyBMJ+SIrt3iqFuAo=";
repo = "snallygaster";
rev = "refs/tags/v${version}";
hash = "sha256-d94Z/vLOcOa9N8WIgCkiZAciNUzdI4qbGXQOc8KNDEE=";
};
propagatedBuildInputs = with python3Packages; [
urllib3
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
beautifulsoup4
dnspython
urllib3
];
nativeCheckInputs = with python3Packages; [
pytestCheckHook
];
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
pytestFlagsArray = [
# we are not interested in linting the project
@ -31,9 +33,9 @@ python3Packages.buildPythonApplication rec {
meta = with lib; {
description = "Tool to scan for secret files on HTTP servers";
mainProgram = "snallygaster";
homepage = "https://github.com/hannob/snallygaster";
license = licenses.cc0;
maintainers = [ ];
license = licenses.bsd0;
maintainers = with maintainers; [ fab ];
mainProgram = "snallygaster";
};
}