extract-dtb: init at 1.2.3

+30
+30
pkgs/by-name/ex/extract-dtb/package.nix
··· 1 + { 2 + lib, 3 + fetchPypi, 4 + python3Packages, 5 + }: 6 + 7 + python3Packages.buildPythonApplication rec { 8 + pname = "extract-dtb"; 9 + version = "1.2.3"; 10 + pyproject = true; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-g8Dadd0YwE5c/z6Bh/hIGtHsbmoGsgvAQjE/Hfl2+ag="; 15 + }; 16 + 17 + build-system = with python3Packages; [ 18 + setuptools 19 + ]; 20 + 21 + meta = { 22 + description = "Extract device tree blobs (dtb) from kernel images"; 23 + homepage = "https://github.com/PabloCastellano/extract-dtb"; 24 + changelog = "https://github.com/PabloCastellano/extract-dtb/releases/tag/${version}"; 25 + license = lib.licenses.gpl3Plus; 26 + platforms = lib.platforms.linux; 27 + maintainers = with lib.maintainers; [ ungeskriptet ]; 28 + mainProgram = "extract-dtb"; 29 + }; 30 + }