mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.asgi_ipc: init at 1.1.0
This commit is contained in:
parent
9283121bbb
commit
32ca234f3f
1 changed files with 18 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue