Files
nixpkgs/pkgs/development/python-modules/pyecoforest/default.nix
2025-06-02 05:56:36 +02:00

58 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
httpx,
poetry-core,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
respx,
}:
buildPythonPackage rec {
pname = "pyecoforest";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pjanuario";
repo = "pyecoforest";
tag = "v${version}";
hash = "sha256-C8sFq0vsVsq6irWbRd0eq18tfKu0qRRBZHt23CiDTGU=";
};
build-system = [ poetry-core ];
dependencies = [ httpx ];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
respx
];
disabledTests = [
# respx.models.AllMockedAssertionError
"test_get"
"test_get_errors"
"test_set_temperature"
"test_set_power"
"test_turn"
];
pythonImportsCheck = [ "pyecoforest" ];
meta = with lib; {
description = "Module for interacting with Ecoforest devices";
homepage = "https://github.com/pjanuario/pyecoforest";
changelog = "https://github.com/pjanuario/pyecoforest/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}