587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
87 lines
1.7 KiB
Nix
87 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonRelaxDepsHook
|
|
|
|
# build-system
|
|
, setuptools
|
|
|
|
# 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=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail '"setuptools-git-versioning<2"' "" \
|
|
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
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";
|
|
mainProgram = "universal-silabs-flasher";
|
|
homepage = "https://github.com/NabuCasa/universal-silabs-flasher";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|