python3Packages.elkm1-lib: 2.2.12 -> 2.2.13

Diff: https://github.com/gwww/elkm1/compare/2.2.12...2.2.13

Changelog: https://github.com/gwww/elkm1/blob/2.2.13/CHANGELOG.md
This commit is contained in:
Robert Schütz
2025-11-26 12:38:44 -08:00
parent 0340a0ebdb
commit 6efd48621d
@@ -1,33 +1,28 @@
{
lib,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pyserial-asyncio-fast,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "elkm1-lib";
version = "2.2.12";
version = "2.2.13";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "gwww";
repo = "elkm1";
tag = version;
hash = "sha256-66Yen8QZAIKzMePFzxOgeprTIMKj3fanicMCBeqhyO4=";
hash = "sha256-Z8OfaRggVkGzX7d/O8a7L110ophj3sKD2x5JskusUe8=";
};
build-system = [ hatchling ];
dependencies = [
async-timeout
pyserial-asyncio-fast
];