Files
nixpkgs/pkgs/development/python-modules/lacuscore/default.nix
T
Martin Weinelt 318659e7db python3Packages.lacuscore: 1.14.0 -> 1.16.6
https://github.com/ail-project/LacusCore/releases/tag/v1.16.6

This commit was automatically generated using update-python-libraries.
2025-08-09 19:00:15 +02:00

68 lines
1.3 KiB
Nix

{
lib,
async-timeout,
buildPythonPackage,
defang,
dnspython,
eval-type-backport,
fetchFromGitHub,
playwrightcapture,
poetry-core,
pydantic,
pythonOlder,
redis,
requests,
ua-parser,
}:
buildPythonPackage rec {
pname = "lacuscore";
version = "1.16.6";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "ail-project";
repo = "LacusCore";
tag = "v${version}";
hash = "sha256-LcqGJU+wMKTF1E4asysQPcfURqmgc4WQompPpHEgjb8=";
};
pythonRelaxDeps = [
"pydantic"
"redis"
"requests"
];
build-system = [ poetry-core ];
dependencies = [
defang
dnspython
playwrightcapture
pydantic
redis
requests
ua-parser
]
++ playwrightcapture.optional-dependencies.recaptcha
++ redis.optional-dependencies.hiredis
++ ua-parser.optional-dependencies.regex
++ lib.optionals (pythonOlder "3.11") [ async-timeout ]
++ lib.optionals (pythonOlder "3.10") [ eval-type-backport ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "lacuscore" ];
meta = with lib; {
description = "Modulable part of Lacus";
homepage = "https://github.com/ail-project/LacusCore";
changelog = "https://github.com/ail-project/LacusCore/releases/tag/${src.tag}";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}