1{ stdenv, buildPythonPackage, fetchurl, 2 asgiref, msgpack, posix_ipc 3}: 4buildPythonPackage rec { 5 version = "1.4.2"; 6 pname = "asgi_ipc"; 7 name = "${pname}-${version}"; 8 9 src = fetchurl { 10 url = "mirror://pypi/a/asgi_ipc/${name}.tar.gz"; 11 sha256 = "2403f41184405791b05e7aee570bd6ccd47e2d91845d78fe17adcf58ef48c037"; 12 }; 13 14 propagatedBuildInputs = [ asgiref msgpack posix_ipc ]; 15 16 meta = with stdenv.lib; { 17 description = "Posix IPC-backed ASGI channel layer implementation"; 18 license = licenses.bsd3; 19 homepage = https://github.com/django/asgi_ipc/; 20 }; 21}