Unverified Commit 7ffdfcde authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #229333 from fabaff/channels-redis-bump

python310Packages.channels-redis: 4.0.0 -> 4.1.0
parents d5fa26ac 7931cb36
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "channels-redis";
  version = "4.0.0";
  version = "4.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
@@ -21,8 +21,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "django";
    repo = "channels_redis";
    rev = version;
    hash = "sha256-YiLNrMRroa8T4uPNwa5ussFoFYjyg31waGpBGhAETmY=";
    rev = "refs/tags/${version}";
    hash = "sha256-Eid9aWlLNnqr3WAnsLe+Pz9gsugCsdDKi0+nFNF02CI=";
  };

  buildInputs = [
@@ -54,6 +54,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";
    license = licenses.bsd3;
    maintainers = with maintainers; [ mmai ];
  };