python3Packages.pydaikin: init at 2.4.1

This commit is contained in:
Fabian Affolter 2021-02-13 11:18:49 +01:00
parent 5852a21819
commit f6675420fc
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromBitbucket
, freezegun
, netifaces
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, urllib3
}:
buildPythonPackage rec {
pname = "pydaikin";
version = "2.4.1";
disabled = pythonOlder "3.6";
src = fetchFromBitbucket {
owner = "mustang51";
repo = pname;
rev = "v${version}";
sha256 = "1624adp4lqd1n9flnf0wqrcibml2nd19ga3fmxzjg4x5z6767bs3";
};
propagatedBuildInputs = [
aiohttp
netifaces
urllib3
];
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 ];
};
}

View file

@ -5342,6 +5342,8 @@ in {
pycxx = callPackage ../development/python-modules/pycxx { };
pydaikin = callPackage ../development/python-modules/pydaikin { };
pydantic = callPackage ../development/python-modules/pydantic { };
pydbus = callPackage ../development/python-modules/pydbus { };