From ba67692da30ae557774e20b598c0bd2c5a907736 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 10 Oct 2025 01:54:02 +0200 Subject: [PATCH] python313Packages.channels-redis: modernize --- pkgs/development/python-modules/channels-redis/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/channels-redis/default.nix b/pkgs/development/python-modules/channels-redis/default.nix index f596113b56eb..242520999b35 100644 --- a/pkgs/development/python-modules/channels-redis/default.nix +++ b/pkgs/development/python-modules/channels-redis/default.nix @@ -6,9 +6,8 @@ cryptography, fetchFromGitHub, msgpack, - pythonOlder, - redis, setuptools, + redis, }: buildPythonPackage rec { @@ -16,8 +15,6 @@ buildPythonPackage rec { version = "4.3.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "django"; repo = "channels_redis"; @@ -47,7 +44,7 @@ buildPythonPackage rec { meta = with lib; { description = "Redis-backed ASGI channel layer implementation"; homepage = "https://github.com/django/channels_redis/"; - changelog = "https://github.com/django/channels_redis/blob/${version}/CHANGELOG.txt"; + changelog = "https://github.com/django/channels_redis/blob/${src.tag}/CHANGELOG.txt"; license = licenses.bsd3; maintainers = with maintainers; [ mmai ]; };