python313Packages.iometer: init at 0.1.0
This commit is contained in:
committed by
Martin Weinelt
parent
027739139b
commit
e6f8c5dd96
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user