From 0f2a12dffd7a057213ef0e38fc8bea04f1a7059a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 19 Oct 2022 12:02:49 +0000 Subject: [PATCH 1/2] python310Packages.aioswitcher: 3.0.3 -> 3.1.0 --- pkgs/development/python-modules/aioswitcher/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioswitcher/default.nix b/pkgs/development/python-modules/aioswitcher/default.nix index 79cc6fa5c74..0997786ba8b 100644 --- a/pkgs/development/python-modules/aioswitcher/default.nix +++ b/pkgs/development/python-modules/aioswitcher/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "aioswitcher"; - version = "3.0.3"; + version = "3.1.0"; format = "pyproject"; src = fetchFromGitHub { owner = "TomerFi"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-CHyJuIqJpO7wUmOyeDXa4oBvxMthC96OCECtg13gqe0="; + hash = "sha256-UnKi9/+BmQoJcv/Mlv9C9FYUgMy3J8KCGRrWPMGrM8Y="; }; nativeBuildInputs = [ From 83728a5c43b430ac8e733c25ad8abe37003e4502 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 19 Oct 2022 19:11:19 +0200 Subject: [PATCH 2/2] python310Packages.aioswitcher: disable on older Python releases --- pkgs/development/python-modules/aioswitcher/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/aioswitcher/default.nix b/pkgs/development/python-modules/aioswitcher/default.nix index 0997786ba8b..2b6b7fede1d 100644 --- a/pkgs/development/python-modules/aioswitcher/default.nix +++ b/pkgs/development/python-modules/aioswitcher/default.nix @@ -8,6 +8,7 @@ , pytest-resource-path , pytest-sugar , pytestCheckHook +, pythonOlder , time-machine }: @@ -16,6 +17,8 @@ buildPythonPackage rec { version = "3.1.0"; format = "pyproject"; + disabled = pythonOlder "3.9"; + src = fetchFromGitHub { owner = "TomerFi"; repo = pname;