Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
820 B
Nix
43 lines
820 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "lyto";
|
|
version = "0.2.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eeriemyxi";
|
|
repo = "lyto";
|
|
tag = "v${version}";
|
|
hash = "sha256-XCAM7vo4EcbIxFddggeqABru4epE2jW2YpF++I0mpdU=";
|
|
};
|
|
|
|
build-system = [
|
|
python3.pkgs.hatchling
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
qrcode
|
|
rich
|
|
sixel
|
|
zeroconf
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"lyto"
|
|
];
|
|
|
|
meta = {
|
|
description = "Automatic wireless ADB connection using QR codes";
|
|
homepage = "https://github.com/eeriemyxi/lyto";
|
|
changelog = "https://github.com/eeriemyxi/lyto/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ atemu ];
|
|
mainProgram = "lyto";
|
|
};
|
|
}
|