
fangfrisch relies on python's requests which can use proxies by setting environment variables `HTTP_PROXY`, `ALL_PROXY`, etc. To support a socks proxy, set via `ALL_PROXY`, it needs the `pysocks` dependency.
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
|
|
# support setting socks proxies in `ALL_PROXY` environment variable
|
|
supportSocks ? true,
|
|
}:
|
|
let
|
|
version = "1.9.2";
|
|
in
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "fangfrisch";
|
|
inherit version;
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rseichter";
|
|
repo = "fangfrisch";
|
|
tag = version;
|
|
hash = "sha256-8upIh9Z+ismvuKcuEe+gJ4W9NLw/Wq15zjFpy8X9yVo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3.pkgs.setuptools
|
|
python3.pkgs.wheel
|
|
];
|
|
|
|
propagatedBuildInputs =
|
|
with python3.pkgs;
|
|
[
|
|
requests
|
|
sqlalchemy
|
|
]
|
|
++ lib.optional supportSocks pysocks;
|
|
|
|
pythonImportsCheck = [ "fangfrisch" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Update and verify unofficial Clam Anti-Virus signatures";
|
|
homepage = "https://github.com/rseichter/fangfrisch";
|
|
changelog = "https://github.com/rseichter/fangfrisch/blob/${version}/CHANGELOG.rst";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
mainProgram = "fangfrisch";
|
|
};
|
|
}
|