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

22 lines
579 B
Nix
Raw Normal View History

2017-04-26 14:35:52 +02:00
{ stdenv, buildPythonPackage, fetchurl,
asgiref, msgpack, posix_ipc
}:
buildPythonPackage rec {
2017-11-05 13:16:18 +01:00
version = "1.4.2";
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-11-05 13:16:18 +01:00
sha256 = "2403f41184405791b05e7aee570bd6ccd47e2d91845d78fe17adcf58ef48c037";
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 = https://github.com/django/asgi_ipc/;
2017-04-26 14:35:52 +02:00
};
}