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