Merge pull request #320455 from fabaff/aioruckus-bump

python312Packages.aioruckus: 0.34 -> 0.38

authored by

Fabian Affolter and committed by
GitHub
88f098f9 576e148f

+11 -13
+11 -13
pkgs/development/python-modules/aioruckus/default.nix
··· 2 lib, 3 aiohttp, 4 buildPythonPackage, 5 fetchFromGitHub, 6 pytest-asyncio, 7 pytestCheckHook, 8 pythonOlder, 9 setuptools, 10 - wheel, 11 xmltodict, 12 }: 13 14 buildPythonPackage rec { 15 pname = "aioruckus"; 16 - version = "0.34"; 17 - format = "pyproject"; 18 19 disabled = pythonOlder "3.10"; 20 ··· 22 owner = "ms264556"; 23 repo = "aioruckus"; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-SPj1w1jAJFBsWj1+N8srAbvlh+yB3ZTT7aDcZTnmUto="; 26 }; 27 28 postPatch = '' 29 substituteInPlace pyproject.toml \ 30 - --replace "setuptools>=68.1" "setuptools" 31 ''; 32 33 - nativeBuildInputs = [ 34 - setuptools 35 - wheel 36 - ]; 37 38 - propagatedBuildInputs = [ 39 aiohttp 40 xmltodict 41 ]; 42 43 - pythonImportsCheck = [ "aioruckus" ]; 44 - 45 nativeCheckInputs = [ 46 pytest-asyncio 47 pytestCheckHook 48 ]; 49 50 disabledTests = [ 51 - # these require a local ruckus device 52 "test_ap_info" 53 "test_authentication_error" 54 "test_connect_success"
··· 2 lib, 3 aiohttp, 4 buildPythonPackage, 5 + cryptography, 6 fetchFromGitHub, 7 pytest-asyncio, 8 pytestCheckHook, 9 pythonOlder, 10 setuptools, 11 xmltodict, 12 }: 13 14 buildPythonPackage rec { 15 pname = "aioruckus"; 16 + version = "0.40"; 17 + pyproject = true; 18 19 disabled = pythonOlder "3.10"; 20 ··· 22 owner = "ms264556"; 23 repo = "aioruckus"; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-oEm0+ktEJHJPg4PUPfSmG9SyVRDrxs7kosQ0tIY+bRc="; 26 }; 27 28 postPatch = '' 29 substituteInPlace pyproject.toml \ 30 + --replace-fail "setuptools>=68.1" "setuptools" 31 ''; 32 33 + build-system = [ setuptools ]; 34 35 + dependencies = [ 36 aiohttp 37 + cryptography 38 xmltodict 39 ]; 40 41 nativeCheckInputs = [ 42 pytest-asyncio 43 pytestCheckHook 44 ]; 45 46 + pythonImportsCheck = [ "aioruckus" ]; 47 + 48 disabledTests = [ 49 + # Those tests require a local ruckus device 50 "test_ap_info" 51 "test_authentication_error" 52 "test_connect_success"