From 38753d52bc34aa5494d2ecc619b39c6fbeab2702 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Thu, 8 Mar 2018 23:45:05 +0100 Subject: [PATCH] pythonPackages.asgiref: 2.1.5 -> 2.2.0 --- pkgs/development/python-modules/asgiref/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/asgiref/default.nix b/pkgs/development/python-modules/asgiref/default.nix index 223f53698e95..f40adc91b4bc 100644 --- a/pkgs/development/python-modules/asgiref/default.nix +++ b/pkgs/development/python-modules/asgiref/default.nix @@ -1,15 +1,15 @@ -{ stdenv, buildPythonPackage, fetchurl, six }: +{ stdenv, buildPythonPackage, fetchurl, six, async-timeout }: buildPythonPackage rec { - version = "2.1.5"; + version = "2.2.0"; pname = "asgiref"; name = "${pname}-${version}"; src = fetchurl { url = "mirror://pypi/a/asgiref/${name}.tar.gz"; - sha256 = "1a46196df28c67e046a54cc537ce5a8f6a59eb68649f54680d7e4fc3b113ab1b"; + sha256 = "1fmrd749hqxwicnivvgrcw812gbj2zm49zcnkghh9yxbkjfcvxcv"; }; - propagatedBuildInputs = [ six ]; + propagatedBuildInputs = [ six async-timeout ]; meta = with stdenv.lib; { description = "Reference ASGI adapters and channel layers";