1{ stdenv, buildPythonPackage, fetchurl, 2 asgiref, msgpack, posix_ipc 3}: 4buildPythonPackage rec { 5 version = "1.4.1"; 6 pname = "asgi_ipc"; 7 name = "${pname}-${version}"; 8 9 src = fetchurl { 10 url = "mirror://pypi/a/asgi_ipc/${name}.tar.gz"; 11 sha256 = "87cc9dda476d28f335261b73f0f3070f28847718de2e64da9a80492638203e43"; 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 = http://github.com/django/asgi_ipc/; 20 }; 21}