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
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;
};
}