From 086a9abf1260f2f5db67562db6a41693f0d0143d Mon Sep 17 00:00:00 2001 From: K900 Date: Sun, 21 Sep 2025 20:57:20 +0300 Subject: [PATCH] python313Packages.channels: 4.2.2 -> 4.3.1 --- pkgs/development/python-modules/channels/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/channels/default.nix b/pkgs/development/python-modules/channels/default.nix index b7b66ffc7dea..e526925b696b 100644 --- a/pkgs/development/python-modules/channels/default.nix +++ b/pkgs/development/python-modules/channels/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "channels"; - version = "4.2.2"; + version = "4.3.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "django"; repo = "channels"; tag = version; - hash = "sha256-Hx6ItDLt+QAy43SvyYVUY76Sva7+MYjcz0wJeXES/HQ="; + hash = "sha256-dRKK6AQNlPdBQumbLmPyOTW96N/PJ9yUY6GYe5x/c+A="; }; build-system = [ setuptools ]; @@ -46,6 +46,11 @@ buildPythonPackage rec { ] ++ lib.flatten (builtins.attrValues optional-dependencies); + # won't run in sandbox + disabledTestPaths = [ + "tests/sample_project/tests/test_selenium.py" + ]; + pythonImportsCheck = [ "channels" ]; meta = with lib; {