Files
2026-05-10 20:04:25 -07:00

77 lines
1.4 KiB
Nix

{
lib,
aiohttp,
aioresponses,
awesomeversion,
buildPythonPackage,
fetchFromGitHub,
mashumaro,
orjson,
poetry-core,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
rich,
syrupy,
textual,
textual-plotext,
typer,
yarl,
}:
buildPythonPackage (finalAttrs: {
pname = "fumis";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "frenck";
repo = "python-fumis";
tag = "v${finalAttrs.version}";
hash = "sha256-yh1gxQ8iqHIE/pavzjYUXdaHnnHD0Ae6Yd/Elc/ZNmY=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "0.0.0" "${finalAttrs.version}"
'';
build-system = [ poetry-core ];
dependencies = [
aiohttp
awesomeversion
mashumaro
orjson
yarl
];
optional-dependencies = {
cli = [
rich
textual
textual-plotext
typer
];
};
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytest-cov-stub
pytestCheckHook
syrupy
]
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
pythonImportsCheck = [ "fumis" ];
meta = {
description = "Asynchronous Python client for the Fumis WiRCU API";
homepage = "https://github.com/frenck/python-fumis";
changelog = "https://github.com/frenck/python-fumis/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})