nixpkgs/pkgs/development/python-modules/pydaikin/default.nix
2021-10-05 08:13:24 +02:00

50 lines
1.0 KiB
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromBitbucket
, freezegun
, netifaces
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, urllib3
}:
buildPythonPackage rec {
pname = "pydaikin";
version = "2.6.0";
disabled = pythonOlder "3.6";
src = fetchFromBitbucket {
owner = "mustang51";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Fk6zMWgvhKp+7BMDGw89Akb4fgK6+xi+AyvEY3pdTQQ=";
};
propagatedBuildInputs = [
aiohttp
netifaces
urllib3
];
# while they have tests, they do not run them in their CI and they fail as of 2.6.0
# AttributeError: 'DaikinBRP069' object has no attribute 'last_hour_cool_energy_consumption'
doCheck = false;
checkInputs = [
freezegun
pytest-aiohttp
pytestCheckHook
];
pythonImportsCheck = [ "pydaikin" ];
meta = with lib; {
description = "Python Daikin HVAC appliances interface";
homepage = "https://bitbucket.org/mustang51/pydaikin";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}