27 lines
761 B
Nix
27 lines
761 B
Nix
|
# WARNING: This file was automatically generated. You should avoid editing it.
|
||
|
# If you run pynixify again, the file will be either overwritten or
|
||
|
# deleted, and you will lose the changes you made to it.
|
||
|
|
||
|
{ aioredis, asgiref, buildPythonPackage, channels, fetchPypi, lib, msgpack }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "channels-redis";
|
||
|
version = "3.3.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit version;
|
||
|
pname = "channels_redis";
|
||
|
sha256 = "1aay9b6a88j43xl54sddwha8mb6hdlnjpcavk2vpkfhmkhkww60a";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ aioredis msgpack asgiref channels ];
|
||
|
|
||
|
# TODO FIXME
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Redis-backed ASGI channel layer implementation";
|
||
|
homepage = "http://github.com/django/channels_redis/";
|
||
|
};
|
||
|
}
|