1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
netifaces,
|
|
pycryptodome,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "greeclimate";
|
|
version = "2.1.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cmroche";
|
|
repo = "greeclimate";
|
|
tag = "v${version}";
|
|
hash = "sha256-qYgwjVfH9Im0Mxd8YOjV1M4fKhSd3tKyQB2PZ9dkqTU=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
netifaces
|
|
pycryptodome
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# OSError: [Errno 101] Network is unreachable
|
|
"test_get_device_info"
|
|
"test_device_bind"
|
|
"test_device_late_bind"
|
|
"test_update_properties"
|
|
"test_set_properties"
|
|
"test_uninitialized_properties"
|
|
"test_update_current_temp"
|
|
"test_send_temperature"
|
|
"test_enable_disable_sleep_mode"
|
|
"test_mismatch_temrec_farenheit"
|
|
"test_device_equality"
|
|
"test_issue_69_TemSen_40_should_not_set_firmware_v4"
|
|
"test_issue_87_quiet_should_set_2"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"greeclimate"
|
|
"greeclimate.device"
|
|
"greeclimate.discovery"
|
|
"greeclimate.exceptions"
|
|
"greeclimate.network"
|
|
];
|
|
|
|
meta = {
|
|
description = "Discover, connect and control Gree based minisplit systems";
|
|
homepage = "https://github.com/cmroche/greeclimate";
|
|
changelog = "https://github.com/cmroche/greeclimate/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|