pythonPackages.asgiref: 1.0.0 -> 1.1.1

This commit is contained in:
Lancelot SIX 2017-04-26 14:33:05 +02:00
parent b1d16c731f
commit db0627336e
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchurl, six }:
buildPythonPackage rec {
name = "asgiref-${version}";
version = "1.1.1";
src = fetchurl {
url = "mirror://pypi/a/asgiref/${name}.tar.gz";
sha256 = "0gayxnysknwg8hxb5kvmi2mmd5dnrhgza23daf8j25w3nj2drars";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Reference ASGI adapters and channel layers";
license = licenses.bsd3;
homepage = https://github.com/django/asgiref;
};
}

View File

@ -808,6 +808,8 @@ in {
};
};
asgiref = callPackage ../development/python-modules/asgiref { };
asgi_ipc = buildPythonPackage rec {
name = "asgi_ipc-${version}";
version = "1.2.0";