python3Packages.pyomie: init at 1.1.1 (#518578)

This commit is contained in:
Martin Weinelt
2026-05-10 13:39:42 +00:00
committed by GitHub
3 changed files with 60 additions and 1 deletions
@@ -0,0 +1,55 @@
{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
deepdiff,
fetchFromGitHub,
poetry-core,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
rich,
typer,
}:
buildPythonPackage (finalAttrs: {
pname = "pyomie";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "luuuis";
repo = "pyomie";
tag = "v${finalAttrs.version}";
hash = "sha256-BOaOClTXeoRxWb2aJKN6+lQRCLAShvHPXsUZBbH0mno=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "typer" ];
dependencies = [
aiohttp
rich
typer
];
nativeCheckInputs = [
aioresponses
deepdiff
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "pyomie" ];
meta = {
description = "Client for OMIE - Spain and Portugal electricity market data";
homepage = "https://github.com/luuuis/pyomie";
changelog = "https://github.com/luuuis/pyomie/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
@@ -4481,7 +4481,8 @@
];
"omie" =
ps: with ps; [
]; # missing inputs: pyomie
pyomie
];
"omnilogic" =
ps: with ps; [
omnilogic
@@ -8106,6 +8107,7 @@
"octoprint"
"ohme"
"ollama"
"omie"
"omnilogic"
"onboarding"
"oncue"
+2
View File
@@ -14580,6 +14580,8 @@ self: super: with self; {
pyombi = callPackage ../development/python-modules/pyombi { };
pyomie = callPackage ../development/python-modules/pyomie { };
pyomo = callPackage ../development/python-modules/pyomo { };
pyopen-wakeword = callPackage ../development/python-modules/pyopen-wakeword/default.nix { };