Unverified Commit 8447f0f3 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

snallygaster: 0.0.12 -> 0.0.13 (#356411)

parents a0a51776 475a161c
Loading
Loading
Loading
Loading
+17 −15
Original line number Diff line number Diff line
{ 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";
  };
}