Files
nixpkgs/pkgs/development/python-modules/evolutionhttp/default.nix
Fabian Affolter a6f1baa456 python3Packages.evolutionhttp: 0.0.19 -> 0.1.0
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:21 +02:00

49 lines
804 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build-system
hatchling,
# dependencies
aiofiles,
aiohttp,
# tests
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "evolutionhttp";
version = "0.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-idsvna8V3o2LDmcxMSrWr4AioiW0zjnKevpE0X922AA=";
};
build-system = [ hatchling ];
dependencies = [
aiofiles
aiohttp
];
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "evolutionhttp" ];
meta = {
description = "HTTP client for controlling a Bryant Evolution HVAC system";
homepage = "https://github.com/danielsmyers/evolutionhttp";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}