nixpkgs/pkgs/tools/networking/photon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
972 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub }:
2018-08-02 08:49:54 +01:00
2019-05-01 22:31:04 +01:00
python3Packages.buildPythonApplication rec {
2018-08-02 08:49:54 +01:00
pname = "photon";
2019-05-01 22:31:04 +01:00
version = "1.3.0";
2018-08-02 08:49:54 +01:00
2019-05-01 22:31:04 +01:00
src = fetchFromGitHub {
owner = "s0md3v";
repo = "Photon";
rev = "v${version}";
sha256 = "02z1xj72bq35dilr4b6njry4kixz6j2a3ag02nla98q0fvgmgnvy";
2018-08-02 08:49:54 +01:00
};
dontBuild = true;
doCheck = false;
2019-05-01 22:31:04 +01:00
propagatedBuildInputs = with python3Packages; [ requests urllib3 tld ];
2018-08-02 08:49:54 +01:00
installPhase = ''
mkdir -p "$out"/{bin,share/photon}
cp -R photon.py core plugins $out/share/photon
2020-11-18 08:42:33 +00:00
2019-05-01 22:31:04 +01:00
makeWrapper ${python3Packages.python.interpreter} $out/bin/photon \
2018-08-02 08:49:54 +01:00
--set PYTHONPATH "$PYTHONPATH:$out/share/photon" \
--add-flags "-O $out/share/photon/photon.py"
'';
meta = with lib; {
2018-08-02 08:49:54 +01:00
description = "a lightning fast web crawler which extracts URLs, files, intel & endpoints from a target";
homepage = "https://github.com/s0md3v/Photon";
2018-08-02 08:49:54 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ ];
2018-08-02 08:49:54 +01:00
};
}