pythonPackages.asgi_ipc: 1.2.0 -> 1.3.1

This commit is contained in:
Lancelot SIX
2017-04-26 14:35:52 +02:00
parent db0627336e
commit c767920189
2 changed files with 21 additions and 17 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchurl,
asgiref, msgpack, posix_ipc
}:
buildPythonPackage rec {
name = "asgi_ipc-${version}";
version = "1.3.1";
src = fetchurl {
url = "mirror://pypi/a/asgi_ipc/${name}.tar.gz";
sha256 = "1dm8xvm1z28f421ck1ympxsq2sjm9xb7dla6p8yd2bz6gn6p5h7v";
};
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/;
};
}