159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
80 lines
1.7 KiB
Nix
80 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# 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.22";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NabuCasa";
|
|
repo = "universal-silabs-flasher";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-fAz5dhHO5A0pSH6IYcVwNWPxqsNn3urXqnp8GudOrBA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail '"setuptools-git-versioning<2"' "" \
|
|
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
|
|
'';
|
|
|
|
|
|
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 ];
|
|
};
|
|
}
|