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