Files
nixpkgs/pkgs/development/python-modules/lacuscore/default.nix
T
Martin Weinelt 8ea6bde88d treewide: prune pythonOlder 3.10/3.11
This is a post 3.10 removal cleanup.
2026-02-15 04:33:54 +01:00

65 lines
1.2 KiB
Nix

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