2017-04-26 14:35:52 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl,
|
|
|
|
asgiref, msgpack, posix_ipc
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2017-08-24 19:34:20 +02:00
|
|
|
version = "1.4.1";
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "asgi_ipc";
|
|
|
|
name = "${pname}-${version}";
|
2017-04-26 14:35:52 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/a/asgi_ipc/${name}.tar.gz";
|
2017-08-24 19:34:20 +02:00
|
|
|
sha256 = "87cc9dda476d28f335261b73f0f3070f28847718de2e64da9a80492638203e43";
|
2017-04-26 14:35:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ asgiref msgpack posix_ipc ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Posix IPC-backed ASGI channel layer implementation";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = http://github.com/django/asgi_ipc/;
|
|
|
|
};
|
|
|
|
}
|