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
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
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/;
};
}

View File

@ -810,23 +810,7 @@ in {
asgiref = callPackage ../development/python-modules/asgiref { };
asgi_ipc = buildPythonPackage rec {
name = "asgi_ipc-${version}";
version = "1.2.0";
src = pkgs.fetchurl {
url = "mirror://pypi/a/asgi_ipc/${name}.tar.gz";
sha256 = "03phyfj30s4sgaqfbmv38nfvx3kdmjwsh3558d2lxrf2gdrimmf9";
};
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/;
};
};
asgi_ipc = callPackage ../development/python-modules/asgi_ipc { };
asgi_redis = buildPythonPackage rec {
name = "asgi_redis-${version}";