From 52ed1687754f20d990dabad76531d1eb07f5ae48 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 20 Nov 2025 23:34:13 +0000 Subject: [PATCH 1/2] python3Packages.channels: 4.3.1 -> 4.3.2 --- pkgs/development/python-modules/channels/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/channels/default.nix b/pkgs/development/python-modules/channels/default.nix index e526925b696b..b1bf56b20ab0 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.3.1"; + version = "4.3.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "django"; repo = "channels"; tag = version; - hash = "sha256-dRKK6AQNlPdBQumbLmPyOTW96N/PJ9yUY6GYe5x/c+A="; + hash = "sha256-KBjxaK2j9Xbz35IHqZK68cSLkUk4B7t+J7omcQAtuFM="; }; build-system = [ setuptools ]; From e722b0b40dade92e12d0f4146bf68d67c01f0bad Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 21 Nov 2025 13:33:55 +0100 Subject: [PATCH 2/2] python313Packages.channels: modernize --- pkgs/development/python-modules/channels/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/channels/default.nix b/pkgs/development/python-modules/channels/default.nix index b1bf56b20ab0..efa8886f633b 100644 --- a/pkgs/development/python-modules/channels/default.nix +++ b/pkgs/development/python-modules/channels/default.nix @@ -9,7 +9,6 @@ pytest-asyncio, pytest-django, pytestCheckHook, - pythonOlder, setuptools, }: @@ -18,8 +17,6 @@ buildPythonPackage rec { version = "4.3.2"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "django"; repo = "channels"; @@ -56,7 +53,7 @@ buildPythonPackage rec { meta = with lib; { description = "Brings event-driven capabilities to Django with a channel system"; homepage = "https://github.com/django/channels"; - changelog = "https://github.com/django/channels/blob/${version}/CHANGELOG.txt"; + changelog = "https://github.com/django/channels/blob/${src.tag}/CHANGELOG.txt"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; };