2018-08-06 21:30:58 +02:00
|
|
|
{ stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, async-timeout, pytest, pytest-asyncio }:
|
2017-04-26 14:33:05 +02:00
|
|
|
buildPythonPackage rec {
|
2019-09-28 06:07:35 +02:00
|
|
|
version = "3.2.2";
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "asgiref";
|
2017-04-26 14:33:05 +02:00
|
|
|
|
2018-08-06 21:30:58 +02:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
2018-02-20 02:28:40 +01:00
|
|
|
# PyPI tarball doesn't include tests directory
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "django";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-09-28 06:07:35 +02:00
|
|
|
sha256 = "11lnynspgdi5zp3hd8piy8h9fq0s3ck6lzyl7h0fn2mxxyx83yh2";
|
2017-04-26 14:33:05 +02:00
|
|
|
};
|
|
|
|
|
2018-02-20 02:28:40 +01:00
|
|
|
propagatedBuildInputs = [ async-timeout ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest pytest-asyncio ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
2017-04-26 14:33:05 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Reference ASGI adapters and channel layers";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = https://github.com/django/asgiref;
|
|
|
|
};
|
|
|
|
}
|