pythonPackages.asgi_redis: drop

This was part of django-channel-1.x. The current version (2) does not
use it anymore
This commit is contained in:
Lancelot SIX 2018-03-08 23:12:36 +01:00 committed by Frederik Rietdijk
parent 1347f90953
commit dadba1cce3
2 changed files with 0 additions and 26 deletions

View File

@ -1,24 +0,0 @@
{ stdenv, buildPythonPackage, fetchPypi,
asgiref, asgi_ipc, msgpack, six, redis, cryptography
}:
buildPythonPackage rec {
version = "1.4.3";
pname = "asgi_redis";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "10xk7k7mcd28nb3v93mc8xa7sa6p02jnbl8idk6scr6p75jaixzi";
};
# Requires a redis server available
doCheck = false;
propagatedBuildInputs = [ asgiref asgi_ipc msgpack six redis cryptography ];
meta = with stdenv.lib; {
description = "Redis-backed ASGI channel layer implementation";
license = licenses.bsd3;
homepage = https://github.com/django/asgi_redis/;
};
}

View File

@ -456,8 +456,6 @@ in {
asgiref = callPackage ../development/python-modules/asgiref { };
asgi_redis = callPackage ../development/python-modules/asgi_redis { };
python-editor = callPackage ../development/python-modules/python-editor { };
python-gnupg = callPackage ../development/python-modules/python-gnupg {};