2017-04-26 14:33:05 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl, six }:
|
|
|
|
buildPythonPackage rec {
|
2017-12-30 12:21:25 +01:00
|
|
|
version = "2.0.1";
|
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";
|
2017-12-30 12:21:25 +01:00
|
|
|
sha256 = "c3d70c473a2b7e525e18e68504630943e107f5b32f440c00c8543f94f565c855";
|
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;
|
|
|
|
};
|
|
|
|
}
|