Files
nixpkgs/pkgs/development/python-modules/imeon-inverter-api/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
984 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
pdm-pep517,
aiohttp,
async-timeout,
}:
buildPythonPackage rec {
pname = "imeon-inverter-api";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Imeon-Inverters-for-Home-Assistant";
repo = "inverter-api";
tag = version;
hash = "sha256-8tecWWDYFq+kAqWM9vKhM15LKnEVqaDBkH6jh0xwIsE=";
};
build-system = [ pdm-pep517 ];
dependencies = [
aiohttp
async-timeout
];
pythonImportsCheck = [ "imeon_inverter_api" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/Imeon-Inverters-for-Home-Assistant/inverter-api/releases/tag/${src.tag}";
description = "Standalone API to collect data from the Imeon Energy Inverters that uses HTTP POST/GET";
homepage = "https://github.com/Imeon-Inverters-for-Home-Assistant/inverter-api";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}