snallygaster: 0.0.12 -> 0.0.13 (#356411)
This commit is contained in:
commit
8447f0f3e6
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user