python313Packages.channels: 4.2.2 -> 4.3.1

This commit is contained in:
K900
2025-09-22 09:56:46 +03:00
parent 509f568ad2
commit 086a9abf12
@@ -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; {