Files
nixpkgs/pkgs/development/python-modules/asgi_ipc/default.nix
T

22 lines
578 B
Nix
Raw Normal View History

2017-04-26 14:35:52 +02:00
{ stdenv, buildPythonPackage, fetchurl,
asgiref, msgpack, posix_ipc
}:
buildPythonPackage rec {
2017-05-27 14:24:47 +02:00
version = "1.4.0";
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-05-27 14:24:47 +02:00
sha256 = "1bae453d771eb92c0ec558b826fc0bce75a2a61bf21187784d4e4dc11710e588";
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/;
};
}