c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
79 lines
1.5 KiB
Nix
79 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonRelaxDepsHook
|
|
|
|
# build-system
|
|
, setuptools
|
|
, setuptools-git-versioning
|
|
|
|
# dependencies
|
|
, async-timeout
|
|
, bellows
|
|
, click
|
|
, coloredlogs
|
|
, crc
|
|
, libgpiod
|
|
, typing-extensions
|
|
, zigpy
|
|
|
|
# tests
|
|
, pytestCheckHook
|
|
, pytest-asyncio
|
|
, pytest-mock
|
|
, pytest-timeout
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "universal-silabs-flasher";
|
|
version = "0.0.19";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NabuCasa";
|
|
repo = "universal-silabs-flasher";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-VoO9B27CNY2Cnt/Q2HsU6DVYkukQMgbIHc6xqfN0P7w=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
setuptools
|
|
setuptools-git-versioning
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
# https://github.com/NabuCasa/universal-silabs-flasher/pull/50
|
|
"gpiod"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
bellows
|
|
click
|
|
coloredlogs
|
|
crc
|
|
typing-extensions
|
|
zigpy
|
|
] ++ lib.optionals (stdenv.hostPlatform.isLinux) [
|
|
libgpiod
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
pytest-mock
|
|
pytest-timeout
|
|
];
|
|
|
|
pythonImportsCheck = [ "universal_silabs_flasher" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/NabuCasa/universal-silabs-flasher/releases/tag/v${version}";
|
|
description = "Flashes Silicon Labs radios running EmberZNet or CPC multi-pan firmware";
|
|
homepage = "https://github.com/NabuCasa/universal-silabs-flasher";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|