1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:43:52 +00:00
ultima/modules/home/programs/custom/anicli/anicli-api.nix

39 lines
793 B
Nix
Raw Normal View History

{
lib,
fetchPypi,
python3Packages,
python3,
}:
2024-11-21 09:24:15 +00:00
python3Packages.buildPythonApplication rec {
pname = "anicli_api";
version = "0.6.11";
pyproject = true;
src = fetchPypi {
pname = "anicli_api";
inherit version;
hash = "sha256-1jfPl+Vh7c4zWjQJ/qdvFOhXBvVTX4iqShxoMtbN6j4=";
};
build-system = with python3Packages; [ poetry-core ];
dependencies = with python3Packages; [
(python3.withPackages (ps: with ps; [ httpx ] ++ httpx.optional-dependencies.http2))
2024-11-21 09:24:15 +00:00
(pkgs.callPackage ./chompjs.nix { })
attrs
parsel
tqdm
];
dontCheckRuntimeDeps = true;
meta = with lib; {
homepage = "https://github.com/vypivshiy/anicli-api";
maintainers = with maintainers; [
DADA30000
azikx
];
2024-11-21 09:24:15 +00:00
mainProgram = "anicli-api";
};
}