python3Packages.iometer: 0.4.0 -> 1.0.1

https://github.com/iometer-gmbh/iometer.py/releases/tag/1.0.1
This commit is contained in:
Martin Weinelt
2026-06-04 16:31:25 +02:00
parent 185ac10e0f
commit c682a599a8
@@ -1,5 +1,6 @@
{
aiohttp,
aiohttp-sse-client,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
@@ -10,22 +11,23 @@
yarl,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "iometer";
version = "0.4.0";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "iometer-gmbh";
repo = "iometer.py";
tag = "v${version}";
hash = "sha256-FO9IwBXGIBh522JaaATjxo93zbGwnB+Y9dy7724d1Rw=";
tag = finalAttrs.version;
hash = "sha256-ksf/nZHv4/JRHo5OrFp6lgPF62DD37ELFfUVkL+TDEo=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
aiohttp-sse-client
yarl
];
@@ -42,10 +44,10 @@ buildPythonPackage rec {
];
meta = {
changelog = "https://github.com/iometer-gmbh/iometer.py/releases/tag/${src.tag}";
changelog = "https://github.com/iometer-gmbh/iometer.py/releases/tag/${finalAttrs.src.tag}";
description = "Python client for interacting with IOmeter devices over HTTP";
homepage = "https://github.com/iometer-gmbh/iometer.py";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
})