From aacf332c0bd2e6f2aed0b2b06f41c6b4e64224a6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 29 Dec 2023 21:29:48 +0100 Subject: [PATCH 1/3] python311Packages.aioruckus: 0.34 -> 0.37 Diff: https://github.com/ms264556/aioruckus/compare/refs/tags/v0.34...v0.37 --- pkgs/development/python-modules/aioruckus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioruckus/default.nix b/pkgs/development/python-modules/aioruckus/default.nix index d78c56e92cc3..af9a1695c70e 100644 --- a/pkgs/development/python-modules/aioruckus/default.nix +++ b/pkgs/development/python-modules/aioruckus/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "aioruckus"; - version = "0.34"; + version = "0.37"; format = "pyproject"; disabled = pythonOlder "3.10"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "ms264556"; repo = "aioruckus"; rev = "refs/tags/v${version}"; - hash = "sha256-SPj1w1jAJFBsWj1+N8srAbvlh+yB3ZTT7aDcZTnmUto="; + hash = "sha256-uFYOTF8yfskLSwRP3TIDMSTlsCuU7BxAyYeFgohZuh4="; }; postPatch = '' From 401fd9e3ed83a2b2c710cef566420d9b3a320c9d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 17 Jun 2024 08:36:20 +0200 Subject: [PATCH 2/3] python312Packages.aioruckus: 0.37 -> 0.38 Diff: https://github.com/ms264556/aioruckus/compare/refs/tags/v0.37...v0.38 --- .../python-modules/aioruckus/default.nix | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/aioruckus/default.nix b/pkgs/development/python-modules/aioruckus/default.nix index af9a1695c70e..f392d69027c8 100644 --- a/pkgs/development/python-modules/aioruckus/default.nix +++ b/pkgs/development/python-modules/aioruckus/default.nix @@ -2,19 +2,19 @@ lib, aiohttp, buildPythonPackage, + cryptography, fetchFromGitHub, pytest-asyncio, pytestCheckHook, pythonOlder, setuptools, - wheel, xmltodict, }: buildPythonPackage rec { pname = "aioruckus"; - version = "0.37"; - format = "pyproject"; + version = "0.38"; + pyproject = true; disabled = pythonOlder "3.10"; @@ -22,33 +22,33 @@ buildPythonPackage rec { owner = "ms264556"; repo = "aioruckus"; rev = "refs/tags/v${version}"; - hash = "sha256-uFYOTF8yfskLSwRP3TIDMSTlsCuU7BxAyYeFgohZuh4="; + hash = "sha256-h32EmiCQ6REciGMl0wDV8BSUezsFRo76RqUBeD2+pbY="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace "setuptools>=68.1" "setuptools" + --replace-fail "setuptools>=68.1" "setuptools" ''; - nativeBuildInputs = [ + build-system = [ setuptools - wheel ]; - propagatedBuildInputs = [ + dependencies = [ aiohttp + cryptography xmltodict ]; - pythonImportsCheck = [ "aioruckus" ]; - nativeCheckInputs = [ pytest-asyncio pytestCheckHook ]; + pythonImportsCheck = [ "aioruckus" ]; + disabledTests = [ - # these require a local ruckus device + # Those tests require a local ruckus device "test_ap_info" "test_authentication_error" "test_connect_success" From a4f8f7ce9c11b627749c130f0fa86a188c341264 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 17 Aug 2024 00:35:12 +0200 Subject: [PATCH 3/3] python312Packages.aioruckus: 0.38 -> 0.40 Diff: ms264556/aioruckus@refs/tags/v0.38...v0.40 --- pkgs/development/python-modules/aioruckus/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/aioruckus/default.nix b/pkgs/development/python-modules/aioruckus/default.nix index f392d69027c8..bcd1ce1919fe 100644 --- a/pkgs/development/python-modules/aioruckus/default.nix +++ b/pkgs/development/python-modules/aioruckus/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "aioruckus"; - version = "0.38"; + version = "0.40"; pyproject = true; disabled = pythonOlder "3.10"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "ms264556"; repo = "aioruckus"; rev = "refs/tags/v${version}"; - hash = "sha256-h32EmiCQ6REciGMl0wDV8BSUezsFRo76RqUBeD2+pbY="; + hash = "sha256-oEm0+ktEJHJPg4PUPfSmG9SyVRDrxs7kosQ0tIY+bRc="; }; postPatch = '' @@ -30,9 +30,7 @@ buildPythonPackage rec { --replace-fail "setuptools>=68.1" "setuptools" ''; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; dependencies = [ aiohttp