mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 12:37:47 +00:00
fangfrisch: init at 1.6.1
This commit is contained in:
parent
955f2d39ec
commit
d7376bc88e
40
pkgs/by-name/fa/fangfrisch/package.nix
Normal file
40
pkgs/by-name/fa/fangfrisch/package.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
let
|
||||
version = "1.6.1";
|
||||
in
|
||||
python3.pkgs.buildPythonApplication {
|
||||
pname = "fangfrisch";
|
||||
inherit version;
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rseichter";
|
||||
repo = "fangfrisch";
|
||||
rev = version;
|
||||
hash = "sha256-yXXzwN0BI//NqpNNmKIhwFv3hDwNZLl1K81hUD/tCrQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.setuptools
|
||||
python3.pkgs.wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
requests
|
||||
sqlalchemy
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "fangfrisch" ];
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user