mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
47 lines
878 B
Nix
47 lines
878 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "lacus";
|
|
version = "1.10.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ail-project";
|
|
repo = "lacus";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-5KddApwaN4t+QRaQTqIXuYStuPxKq3v6pRknBusAcbM=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"gunicorn"
|
|
"psutil"
|
|
"redis"
|
|
];
|
|
|
|
build-system = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
flask-restx
|
|
gunicorn
|
|
lacuscore
|
|
psutil
|
|
redis
|
|
rich
|
|
werkzeug
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Capturing system using playwright";
|
|
homepage = "https://github.com/ail-project/lacus";
|
|
changelog = "https://github.com/ail-project/lacus/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|