1aa888ba53
because we're playing with its install requirements, add a pythonImportsCheck to give us a chance to discover brokenness. technically this isn't a realistic test of end user behaviour as this is really an application, not a python module, but it seems to have a pretty stable import name of `fierce`, so it works.
32 lines
813 B
Nix
32 lines
813 B
Nix
{ stdenv, fetchFromGitHub, python3 }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "fierce";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mschwager";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "11yaz8ap9swx95j3wpqh0b6jhw6spqgfnsyn1liw9zqi4jwgiax7";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt --replace 'dnspython==1.16.0' 'dnspython'
|
|
'';
|
|
|
|
propagatedBuildInputs = [ python3.pkgs.dns ];
|
|
|
|
# tests require network access
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "fierce" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/mschwager/fierce";
|
|
description = "DNS reconnaissance tool for locating non-contiguous IP space";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ c0bw3b ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|