Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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 = {
|
|
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 = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
mainProgram = "fangfrisch";
|
|
};
|
|
}
|