python313Packages.iometer: init at 0.1.0

This commit is contained in:
Robert Schütz
2025-03-05 23:03:33 +01:00
committed by Martin Weinelt
parent 027739139b
commit e6f8c5dd96
2 changed files with 53 additions and 0 deletions
@@ -0,0 +1,51 @@
{
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
pytest-asyncio,
pytestCheckHook,
yarl,
}:
buildPythonPackage rec {
pname = "iometer";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "iometer-gmbh";
repo = "iometer.py";
tag = "v${version}";
hash = "sha256-+Ox9FlS2mswCt2jaJfKuvt21byjUrnCYp3vcv1D83Rs=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
yarl
];
pythonImportsCheck = [ "iometer" ];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytestCheckHook
];
pytestFlagsArray = [
"tests/test.py"
];
meta = {
changelog = "https://github.com/iometer-gmbh/iometer.py/releases/tag/${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 ];
};
}
+2
View File
@@ -6530,6 +6530,8 @@ self: super: with self; {
ioctl-opt = callPackage ../development/python-modules/ioctl-opt { };
iometer = callPackage ../development/python-modules/iometer { };
ionhash = callPackage ../development/python-modules/ionhash { };
ionoscloud = callPackage ../development/python-modules/ionoscloud { };