Unverified Commit 30d98e60 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

forbidden: refactor

parent 28a7973a
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
{
  lib,
  python3,
  fetchFromGitHub,
  python3,
}:

python3.pkgs.buildPythonApplication rec {
@@ -20,25 +20,26 @@ python3.pkgs.buildPythonApplication rec {

  dependencies = with python3.pkgs; [
    alive-progress
    bot-safe-agents
    colorama
    cryptography
    pycurl
    pyjwt
    regex
    requests
    tabulate
    termcolor
    bot-safe-agents
    cryptography
  ];

  pythonImportsCheck = [
    "forbidden"
  ];
  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [ "forbidden" ];

  meta = {
    description = "Tool to bypass 4xx HTTP response status code";
    homepage = "https://github.com/ivan-sincek/forbidden";
    changelog = "https://github.com/ivan-sincek/forbidden/releases/tag/v${version}";
    changelog = "https://github.com/ivan-sincek/forbidden/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "forbidden";