Merge pull request #150563 from fabaff/bump-fierce
fierce: 1.4.0 -> 1.5.0
This commit is contained in:
commit
38cd86ef58
1 changed files with 19 additions and 10 deletions
|
@ -1,31 +1,40 @@
|
||||||
{ lib, fetchFromGitHub, python3 }:
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, python3
|
||||||
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "fierce";
|
pname = "fierce";
|
||||||
version = "1.4.0";
|
version = "1.5.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mschwager";
|
owner = "mschwager";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "11yaz8ap9swx95j3wpqh0b6jhw6spqgfnsyn1liw9zqi4jwgiax7";
|
sha256 = "sha256-9VTPD5i203BTl2nADjq131W9elgnaHNIWGIUuCiYlHg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
substituteInPlace requirements.txt --replace 'dnspython==1.16.0' 'dnspython'
|
dnspython
|
||||||
'';
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ python3.pkgs.dnspython ];
|
postPatch = ''
|
||||||
|
substituteInPlace requirements.txt \
|
||||||
|
--replace 'dnspython==1.16.0' 'dnspython'
|
||||||
|
'';
|
||||||
|
|
||||||
# tests require network access
|
# tests require network access
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "fierce" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"fierce"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/mschwager/fierce";
|
|
||||||
description = "DNS reconnaissance tool for locating non-contiguous IP space";
|
description = "DNS reconnaissance tool for locating non-contiguous IP space";
|
||||||
|
homepage = "https://github.com/mschwager/fierce";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ c0bw3b ];
|
maintainers = with maintainers; [ c0bw3b ];
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue