mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
lacus: init at 1.8.0
Capturing system using playwright https://github.com/ail-project/lacus
This commit is contained in:
parent
8a0d04018a
commit
27b35a3f0e
39
pkgs/by-name/la/lacus/package.nix
Normal file
39
pkgs/by-name/la/lacus/package.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "lacus";
|
||||
version = "1.8.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ail-project";
|
||||
repo = "lacus";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-3sgTt3SsasltChCqHAWyujtUvoLwHWZzfWwlfnJA+zE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user