Fabian Affolter a7d40f2f3b 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
2025-07-05 11:07:42 +02:00

33 lines
685 B
Nix

{
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";
};
}