pythonPackages.asgi_ipc: drop

This wath used for django-channels-1.x. The current version (2) does
not use it anymore
This commit is contained in:
Lancelot SIX 2018-03-08 23:11:15 +01:00 committed by Frederik Rietdijk
parent 25f543a9f7
commit 1347f90953
2 changed files with 0 additions and 23 deletions

View File

@ -1,21 +0,0 @@
{ stdenv, buildPythonPackage, fetchurl,
asgiref, msgpack, posix_ipc
}:
buildPythonPackage rec {
version = "1.4.2";
pname = "asgi_ipc";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/a/asgi_ipc/${name}.tar.gz";
sha256 = "2403f41184405791b05e7aee570bd6ccd47e2d91845d78fe17adcf58ef48c037";
};
propagatedBuildInputs = [ asgiref msgpack posix_ipc ];
meta = with stdenv.lib; {
description = "Posix IPC-backed ASGI channel layer implementation";
license = licenses.bsd3;
homepage = https://github.com/django/asgi_ipc/;
};
}

View File

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