pythonPackages.asgi_ipc: 1.2.0 -> 1.3.1
This commit is contained in:
parent
db0627336e
commit
c767920189
20
pkgs/development/python-modules/asgi_ipc/default.nix
Normal file
20
pkgs/development/python-modules/asgi_ipc/default.nix
Normal 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/;
|
||||||
|
};
|
||||||
|
}
|
@ -810,23 +810,7 @@ in {
|
|||||||
|
|
||||||
asgiref = callPackage ../development/python-modules/asgiref { };
|
asgiref = callPackage ../development/python-modules/asgiref { };
|
||||||
|
|
||||||
asgi_ipc = buildPythonPackage rec {
|
asgi_ipc = callPackage ../development/python-modules/asgi_ipc { };
|
||||||
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_redis = buildPythonPackage rec {
|
asgi_redis = buildPythonPackage rec {
|
||||||
name = "asgi_redis-${version}";
|
name = "asgi_redis-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user