mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
59769074a7
Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2024.8.1...2024.8.13 Changelog: https://github.com/danielperna84/hahomematic/blob/refs/tags/2024.8.13/changelog.md
68 lines
1.3 KiB
Nix
68 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
freezegun,
|
|
orjson,
|
|
pydevccu,
|
|
pytest-aiohttp,
|
|
pytestCheckHook,
|
|
python-slugify,
|
|
pythonOlder,
|
|
setuptools,
|
|
voluptuous,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hahomematic";
|
|
version = "2024.8.13";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "danielperna84";
|
|
repo = "hahomematic";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-dojgIKF3AGkJm2USspV0rm8UZnTLxYf4dgt86WwonQk=";
|
|
};
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "setuptools~=69.2.0" "setuptools" \
|
|
--replace-fail "wheel~=0.43.0" "wheel"
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
orjson
|
|
python-slugify
|
|
voluptuous
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
pydevccu
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "hahomematic" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to interact with HomeMatic devices";
|
|
homepage = "https://github.com/danielperna84/hahomematic";
|
|
changelog = "https://github.com/danielperna84/hahomematic/blob/${src.rev}/changelog.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
dotlambda
|
|
fab
|
|
];
|
|
};
|
|
}
|