2017-04-26 14:33:05 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl, six }:
|
|
|
|
buildPythonPackage rec {
|
2018-02-17 14:18:13 +01:00
|
|
|
version = "2.1.5";
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "asgiref";
|
|
|
|
name = "${pname}-${version}";
|
2017-04-26 14:33:05 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/a/asgiref/${name}.tar.gz";
|
2018-02-17 14:18:13 +01:00
|
|
|
sha256 = "1a46196df28c67e046a54cc537ce5a8f6a59eb68649f54680d7e4fc3b113ab1b";
|
2017-04-26 14:33:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Reference ASGI adapters and channel layers";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = https://github.com/django/asgiref;
|
|
|
|
};
|
|
|
|
}
|