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

dnsrecon: 1.2.0 -> 1.3.0 (#351215)

parents b4f52e27 024df64e
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -6,22 +6,24 @@

python3.pkgs.buildPythonApplication rec {
  pname = "dnsrecon";
  version = "1.2.0";
  version = "1.3.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "darkoperator";
    repo = "dnsrecon";
    rev = "refs/tags/${version}";
    hash = "sha256-XboRxq3ZDIDtuECVSnncQ2Pa8YAvva4KUNm0O5ED6rc=";
    hash = "sha256-h87sNorCKxUmXZAbF7FaOqruUCv84FepFwKMYrIl70M=";
  };

  build-system = with python3.pkgs; [ setuptools ];

  dependencies = with python3.pkgs; [
    dnspython
    netaddr
    loguru
    lxml
    netaddr
    requests
    setuptools
  ];