summary refs log tree commit diff
path: root/pkgs/tools/security/dnsrecon/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-07-31 22:00:24 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-07-31 22:00:24 +0200
commit0700a52ae2285a74d3d916538570811ce2a6d61e (patch)
tree9f8f5f0cbb69afc09a90679a26afe87b6f065ea9 /pkgs/tools/security/dnsrecon/default.nix
parent1e186dd0c3baa34d59ef74156fc0a554e21e4320 (diff)
downloadnixpkgs-0700a52ae2285a74d3d916538570811ce2a6d61e.tar
nixpkgs-0700a52ae2285a74d3d916538570811ce2a6d61e.tar.gz
nixpkgs-0700a52ae2285a74d3d916538570811ce2a6d61e.tar.bz2
nixpkgs-0700a52ae2285a74d3d916538570811ce2a6d61e.tar.lz
nixpkgs-0700a52ae2285a74d3d916538570811ce2a6d61e.tar.xz
nixpkgs-0700a52ae2285a74d3d916538570811ce2a6d61e.tar.zst
nixpkgs-0700a52ae2285a74d3d916538570811ce2a6d61e.zip
dnsrecon: 1.1.4 -> 1.1.5
Changelog: https://github.com/darkoperator/dnsrecon/releases/tag/1.1.5
Diffstat (limited to 'pkgs/tools/security/dnsrecon/default.nix')
-rw-r--r--pkgs/tools/security/dnsrecon/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/tools/security/dnsrecon/default.nix b/pkgs/tools/security/dnsrecon/default.nix
index a63205d9ba0..65fae4928c6 100644
--- a/pkgs/tools/security/dnsrecon/default.nix
+++ b/pkgs/tools/security/dnsrecon/default.nix
@@ -5,16 +5,22 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "dnsrecon";
-  version = "1.1.4";
+  version = "1.1.5";
   format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "darkoperator";
     repo = pname;
     rev = version;
-    hash = "sha256-DtyYYNtv0Zk8103NN+vlnr3Etv0bAZ6+A2CXeZZgiUg=";
+    hash = "sha256-W7ZFc+kF00ANoYVTlsY+lJ9FjMEGbqYfNojoZFiRHU8=";
   };
 
+  postPatch = ''
+    substituteInPlace requirements.txt \
+      --replace "flake8" "" \
+      --replace "pytest" ""
+  '';
+
   propagatedBuildInputs = with python3.pkgs; [
     dnspython
     netaddr