Merge pull request #318473 from fabaff/pydaikin-bump

python312Packages.pydaikin: 2.11.1 -> 2.13.0

authored by tomberek and committed by GitHub b8469764 63436b68

+18 -12
+18 -12
pkgs/development/python-modules/pydaikin/default.nix
··· 2 lib, 3 aiohttp, 4 buildPythonPackage, 5 - fetchFromBitbucket, 6 freezegun, 7 netifaces, 8 pytest-aiohttp, 9 pytestCheckHook, 10 pythonOlder, 11 urllib3, 12 }: 13 14 buildPythonPackage rec { 15 pname = "pydaikin"; 16 - version = "2.11.1"; 17 - format = "setuptools"; 18 19 - disabled = pythonOlder "3.6"; 20 21 - src = fetchFromBitbucket { 22 - owner = "mustang51"; 23 - repo = pname; 24 - rev = "v${version}"; 25 - hash = "sha256-IBrd4PH8EzVVVFQtJdJ8bTMLEzfh7MYMe79yuCrhmww="; 26 }; 27 28 - propagatedBuildInputs = [ 29 aiohttp 30 netifaces 31 urllib3 32 ]; 33 34 doCheck = false; # tests fail and upstream does not seem to run them either ··· 43 44 meta = with lib; { 45 description = "Python Daikin HVAC appliances interface"; 46 - mainProgram = "pydaikin"; 47 - homepage = "https://bitbucket.org/mustang51/pydaikin"; 48 license = with licenses; [ gpl3Only ]; 49 maintainers = with maintainers; [ fab ]; 50 }; 51 }
··· 2 lib, 3 aiohttp, 4 buildPythonPackage, 5 + fetchFromGitHub, 6 freezegun, 7 netifaces, 8 pytest-aiohttp, 9 pytestCheckHook, 10 pythonOlder, 11 urllib3, 12 + setuptools, 13 + tenacity, 14 }: 15 16 buildPythonPackage rec { 17 pname = "pydaikin"; 18 + version = "2.13.0"; 19 + pyproject = true; 20 21 + disabled = pythonOlder "3.11"; 22 23 + src = fetchFromGitHub { 24 + owner = "fredrike"; 25 + repo = "pydaikin"; 26 + rev = "refs/tags/v${version}"; 27 + hash = "sha256-t4SyFAgrLpXlDx464OHBWT8b+vGfIGZH6lKjX0k6tNw="; 28 }; 29 30 + build-system = [ setuptools ]; 31 + 32 + dependencies = [ 33 aiohttp 34 netifaces 35 urllib3 36 + tenacity 37 ]; 38 39 doCheck = false; # tests fail and upstream does not seem to run them either ··· 48 49 meta = with lib; { 50 description = "Python Daikin HVAC appliances interface"; 51 + homepage = "https://github.com/fredrike/pydaikin"; 52 + changelog = "https://github.com/fredrike/pydaikin/releases/tag/v${version}"; 53 license = with licenses; [ gpl3Only ]; 54 maintainers = with maintainers; [ fab ]; 55 + mainProgram = "pydaikin"; 56 }; 57 }