python312Packages.pylamarzocco: 1.2.11 -> 1.3.2 (#362631)

authored by Fabian Affolter and committed by GitHub f2ad5d4a 6ffd3875

+7 -9
+7 -9
pkgs/development/python-modules/pylamarzocco/default.nix
··· 1 1 { 2 2 lib, 3 - authlib, 3 + aiohttp, 4 + aioresponses, 4 5 bleak, 5 6 buildPythonPackage, 6 7 fetchFromGitHub, 7 - httpx, 8 8 pytest-asyncio, 9 9 pytestCheckHook, 10 10 pythonOlder, 11 11 setuptools, 12 12 syrupy, 13 - websockets, 14 13 }: 15 14 16 15 buildPythonPackage rec { 17 16 pname = "pylamarzocco"; 18 - version = "1.2.11"; 17 + version = "1.3.2"; 19 18 pyproject = true; 20 19 21 20 disabled = pythonOlder "3.11"; ··· 24 23 owner = "zweckj"; 25 24 repo = "pylamarzocco"; 26 25 rev = "refs/tags/v${version}"; 27 - hash = "sha256-iRxn4xAP5b/2byeWbYm6mQwAu1TUmJgOVEqm/bZT9Xw="; 26 + hash = "sha256-ngTVm1tfs42pXGIQh8Hy8d7UY3D/skCZkbKr6AACYH0="; 28 27 }; 29 28 30 29 build-system = [ setuptools ]; 31 30 32 31 dependencies = [ 33 - authlib 32 + aiohttp 34 33 bleak 35 - httpx 36 - websockets 37 34 ]; 38 35 39 36 nativeCheckInputs = [ 37 + aioresponses 40 38 pytest-asyncio 41 39 pytestCheckHook 42 40 syrupy 43 41 ]; 44 42 45 - pythonImportsCheck = [ "lmcloud" ]; 43 + pythonImportsCheck = [ "pylamarzocco" ]; 46 44 47 45 meta = with lib; { 48 46 description = "Library to interface with La Marzocco's cloud";