depot/pkgs/by-name/la/lacus/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

46 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 ];
};
}