Robert Schütz
2026-05-01 21:29:55 -07:00
parent a985801a30
commit 9fa8e635a7
@@ -1,34 +1,36 @@
{
aiohttp,
aiomqtt,
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
lib,
pydantic,
pytest-asyncio,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "actron-neo-api";
version = "0.5.5";
version = "0.5.11";
pyproject = true;
src = fetchFromGitHub {
owner = "kclif9";
repo = "actronneoapi";
tag = "v${version}";
hash = "sha256-bBPhwiJQYDBEPZKA1Cq94X9LYAmBkOWCI+4afrQntmw=";
hash = "sha256-1cXYMYS8quBVtUbv+Wrcvm13I47VuSKTHwwlQKvGcRI=";
};
build-system = [
setuptools
setuptools-scm
hatch-vcs
hatchling
];
dependencies = [
aiohttp
aiomqtt
pydantic
];