python313Packages.trevorproxy: init at 1.0.9

Module to rotate the source IP address via SSH proxies and other methods

https://github.com/blacklanternsecurity/TREVORproxy
This commit is contained in:
Fabian Affolter
2025-07-05 11:07:42 +02:00
parent 4b74f823e6
commit a7d40f2f3b
3 changed files with 35 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
{ python3Packages }: with python3Packages; toPythonApplication trevorproxy
@@ -0,0 +1,32 @@
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
sh,
}:
buildPythonPackage rec {
pname = "trevorproxy";
version = "1.0.9";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ZUOqtJmLiZbe2LBkpTGELeKFkmzA0WCJ/TXPi9eyRXs=";
};
build-system = [ poetry-core ];
dependencies = [ sh ];
pythonImportsCheck = [ "trevorproxy" ];
meta = {
description = "Module to rotate the source IP address via SSH proxies and other methods";
homepage = "https://github.com/blacklanternsecurity/TREVORproxy";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "trevorproxy";
};
}
+2
View File
@@ -18067,6 +18067,8 @@ self: super: with self; {
treq = callPackage ../development/python-modules/treq { };
trevorproxy = callPackage ../development/python-modules/trevorproxy { };
trezor = callPackage ../development/python-modules/trezor { };
trezor-agent = callPackage ../development/python-modules/trezor-agent {