2024-10-29 05:28:55 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
python3Packages,
|
|
|
|
testers,
|
2024-11-01 10:07:28 +00:00
|
|
|
pyamlboot,
|
2024-10-29 05:28:55 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "pyamlboot";
|
|
|
|
version = "1.0.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "superna9999";
|
|
|
|
repo = "pyamlboot";
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-vpWq8+0ZoTkfVyx+2BbXdULFwo/Ug4U1gWArXDfnzyk=";
|
|
|
|
};
|
|
|
|
|
|
|
|
build-system = with python3Packages; [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
|
|
|
dependencies = with python3Packages; [
|
|
|
|
pyusb
|
|
|
|
wheel
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru.tests.version = testers.testVersion {
|
2024-11-01 10:07:28 +00:00
|
|
|
package = pyamlboot;
|
2024-10-29 05:28:55 +00:00
|
|
|
command = "boot.py -v";
|
2024-11-01 10:07:28 +00:00
|
|
|
version = "boot.py ${lib.versions.majorMinor version}";
|
2024-10-29 05:28:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|