Skip to content

Commit

Permalink
Merge pull request #319908 from fabaff/subprober
Browse files Browse the repository at this point in the history
subprober: init at 1.0.9
  • Loading branch information
fabaff authored Jun 15, 2024
2 parents 2a7f427 + 369cd48 commit 0deea38
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions pkgs/by-name/su/subprober/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
lib,
python3,
fetchFromGitHub,
}:

python3.pkgs.buildPythonApplication rec {
pname = "subprober";
version = "1.0.9";
pyproject = true;

src = fetchFromGitHub {
owner = "RevoltSecurities";
repo = "SubProber";
rev = "refs/tags/v${version}";
hash = "sha256-CxmePd1dw9H/XLQZ16JMF1pdFFOI59Qa2knTnKKzFvM=";
};

build-system = with python3.pkgs; [ setuptools ];

dependencies = with python3.pkgs; [
aiodns
aiofiles
aiohttp
alive-progress
anyio
appdirs
arsenic
beautifulsoup4
colorama
fake-useragent
httpx
requests
rich
structlog
urllib3
uvloop
];

# Project has no tests
doCheck = false;

pythonImportsCheck = [ "subprober" ];

meta = with lib; {
description = "Subdomain scanning tool";
homepage = "https://github.com/RevoltSecurities/SubProber";
changelog = "https://github.com/RevoltSecurities/SubProber/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "subprober";
};
}

0 comments on commit 0deea38

Please sign in to comment.