Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
858 B
Nix
49 lines
858 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
wheel,
|
|
aiohttp,
|
|
aiohttp-sse-client,
|
|
charset-normalizer,
|
|
dataclasses-json,
|
|
oauth2-client,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "home-connect-async";
|
|
version = "0.8.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "home_connect_async";
|
|
inherit version;
|
|
hash = "sha256-npVMEiwclKr9HR2M03GNkyJULeLEE9BAnIw8Zoy98nQ=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
aiohttp-sse-client
|
|
charset-normalizer
|
|
dataclasses-json
|
|
oauth2-client
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"home_connect_async"
|
|
];
|
|
|
|
meta = {
|
|
description = "Async SDK for BSH Home Connect API";
|
|
homepage = "https://pypi.org/project/home-connect-async";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ kranzes ];
|
|
};
|
|
}
|