mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
f3282c8d1e
* treewide: remove unused variables * making ofborg happy
37 lines
915 B
Nix
37 lines
915 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
version = "1.0";
|
|
pname = "ipgrep";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jedisct1";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1qaxvbqdalvz05aplhhrg7s4h7yx4clbfd50k46bgavhgcqqv8n3";
|
|
};
|
|
|
|
patchPhase = ''
|
|
mkdir -p ${pname}
|
|
substituteInPlace setup.py \
|
|
--replace "'scripts': []" "'scripts': { '${pname}.py' }"
|
|
'';
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
pycares
|
|
urllib3
|
|
requests
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Extract, defang, resolve names and IPs from text";
|
|
longDescription = ''
|
|
ipgrep extracts possibly obfuscated host names and IP addresses
|
|
from text, resolves host names, and prints them, sorted by ASN.
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ leenaars ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|