mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 08:23:52 +00:00
38 lines
708 B
Nix
38 lines
708 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
fetchPypi,
|
|
python3Packages,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "ani-cli-ru";
|
|
version = "5.0.12";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "anicli_ru";
|
|
inherit version;
|
|
hash = "sha256-s8uI0ch+SPqthHy+d0jcB6o5/Zqx89JHM68Q00nwCFA=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
hatchling
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
python3Packages.hatchling
|
|
(pkgs.callPackage ./eggella.nix { })
|
|
(pkgs.callPackage ./anicli-api.nix { })
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/vypivshiy/ani-cli-ru";
|
|
maintainers = with maintainers; [
|
|
DADA30000
|
|
azikx
|
|
];
|
|
mainProgram = "anicli-ru";
|
|
};
|
|
}
|