Merge pull request #318473 from fabaff/pydaikin-bump
python312Packages.pydaikin: 2.11.1 -> 2.13.0
This commit is contained in:
@@ -2,33 +2,38 @@
|
||||
lib,
|
||||
aiohttp,
|
||||
buildPythonPackage,
|
||||
fetchFromBitbucket,
|
||||
fetchFromGitHub,
|
||||
freezegun,
|
||||
netifaces,
|
||||
pytest-aiohttp,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
urllib3,
|
||||
setuptools,
|
||||
tenacity,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pydaikin";
|
||||
version = "2.11.1";
|
||||
format = "setuptools";
|
||||
version = "2.13.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
disabled = pythonOlder "3.11";
|
||||
|
||||
src = fetchFromBitbucket {
|
||||
owner = "mustang51";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-IBrd4PH8EzVVVFQtJdJ8bTMLEzfh7MYMe79yuCrhmww=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "fredrike";
|
||||
repo = "pydaikin";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-t4SyFAgrLpXlDx464OHBWT8b+vGfIGZH6lKjX0k6tNw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
netifaces
|
||||
urllib3
|
||||
tenacity
|
||||
];
|
||||
|
||||
doCheck = false; # tests fail and upstream does not seem to run them either
|
||||
@@ -43,9 +48,10 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python Daikin HVAC appliances interface";
|
||||
mainProgram = "pydaikin";
|
||||
homepage = "https://bitbucket.org/mustang51/pydaikin";
|
||||
homepage = "https://github.com/fredrike/pydaikin";
|
||||
changelog = "https://github.com/fredrike/pydaikin/releases/tag/v${version}";
|
||||
license = with licenses; [ gpl3Only ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
mainProgram = "pydaikin";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user