python313Packages.smpclient: 4.5.0 -> 5.0.0

Changelog: https://github.com/intercreate/smpclient/releases/tag/5.0.0
This commit is contained in:
Fabian Affolter
2025-08-08 00:21:49 +02:00
parent a904e15683
commit 22772f8d69
@@ -1,31 +1,35 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
async-timeout,
bleak,
buildPythonPackage,
fetchFromGitHub,
intelhex,
poetry-core,
poetry-dynamic-versioning,
pyserial,
smp,
pytest-asyncio,
pytestCheckHook,
smp,
}:
buildPythonPackage rec {
pname = "smpclient";
version = "4.5.0";
version = "5.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "intercreate";
repo = "smpclient";
tag = version;
hash = "sha256-Z0glcCy3JsL45iT8Q82Vtxozi3hv6xaRJvJ3BkHX4PQ=";
hash = "sha256-NQRVEvi/B+KdhPIzw8pm22uXpYPkoaatkCNFnEcibzo=";
};
pythonRelaxDeps = [ "smp" ];
build-system = [
poetry-core
poetry-dynamic-versioning
];
dependencies = [
@@ -41,13 +45,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonRelaxDeps = [
"smp"
];
pythonImportsCheck = [
"smpclient"
];
pythonImportsCheck = [ "smpclient" ];
meta = {
description = "Simple Management Protocol (SMP) Client for remotely managing MCU firmware";