2024-12-17 12:10:05 +00:00
|
|
|
{
|
|
|
|
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; [
|
2024-12-17 12:10:05 +00:00
|
|
|
(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";
|
2024-12-17 12:10:05 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
DADA30000
|
|
|
|
azikx
|
|
|
|
];
|
2024-11-21 09:24:15 +00:00
|
|
|
mainProgram = "anicli-api";
|
|
|
|
};
|
|
|
|
}
|