python313Packages.channels-redis: modernize

This commit is contained in:
Fabian Affolter
2025-10-10 01:54:02 +02:00
parent 8cd2a8b377
commit ba67692da3
@@ -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 ];
};