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
50 lines
1.0 KiB
Nix
50 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
testers,
|
|
pyamlboot,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pyamlboot";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "superna9999";
|
|
repo = "pyamlboot";
|
|
tag = version;
|
|
hash = "sha256-vpWq8+0ZoTkfVyx+2BbXdULFwo/Ug4U1gWArXDfnzyk=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
pyusb
|
|
setuptools # pkg_resources is imported during runtime
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyamlboot" ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = pyamlboot;
|
|
command = "boot.py -v";
|
|
version = "boot.py ${lib.versions.majorMinor version}";
|
|
};
|
|
|
|
meta = {
|
|
description = "Amlogic USB Boot Protocol Library";
|
|
homepage = "https://github.com/superna9999/pyamlboot";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
gpl2Only
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [ genga898 ];
|
|
mainProgram = "boot.py";
|
|
};
|
|
}
|