pythonPackages.asgi_ipc: init at 1.1.0

This commit is contained in:
Lancelot SIX 2016-09-15 15:10:11 +02:00
parent 9283121bbb
commit 32ca234f3f
No known key found for this signature in database
GPG key ID: 02E1542BA66FB047

View file

@ -606,6 +606,24 @@ in modules // {
};
};
asgi_ipc = buildPythonPackage rec {
name = "asgi_ipc-${version}";
version = "1.1.0";
src = pkgs.fetchurl {
url = "mirror://pypi/a/asgi_ipc/${name}.tar.gz";
sha256 = "16q5x2cvx3rpnikmqv8l4clkfib8baqy7diy18rsmzj6hqqli3xy";
};
propagatedBuildInputs = with self ; [ asgiref msgpack posix_ipc ];
meta = {
description = "Posix IPC-backed ASGI channel layer implementation";
license = licenses.bsd3;
homepage = http://github.com/django/asgi_ipc/;
};
};
python-editor = buildPythonPackage rec {
name = "python-editor-${version}";
version = "0.4";