python37Packages.asgiref: 3.2.3 -> 3.2.5

This commit is contained in:
R. RyanTM 2020-03-15 15:26:45 +00:00 committed by Jon
parent 9520a443b6
commit f942e137bb

View File

@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, async-timeout, pytest, pytest-asyncio }: { stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, async-timeout, pytest, pytest-asyncio }:
buildPythonPackage rec { buildPythonPackage rec {
version = "3.2.3"; version = "3.2.5";
pname = "asgiref"; pname = "asgiref";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
@ -10,7 +10,7 @@ buildPythonPackage rec {
owner = "django"; owner = "django";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1b8h50wvvby9m17q39kc0ql8a2yvg2f89ii7zrl2phaw0vb9i109"; sha256 = "040g2cghpskp427xiw9jv7c0lfj1sk5fc01dds8pi7grkk0br357";
}; };
propagatedBuildInputs = [ async-timeout ]; propagatedBuildInputs = [ async-timeout ];
@ -24,6 +24,6 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Reference ASGI adapters and channel layers"; description = "Reference ASGI adapters and channel layers";
license = licenses.bsd3; license = licenses.bsd3;
homepage = https://github.com/django/asgiref; homepage = "https://github.com/django/asgiref";
}; };
} }