2018-02-20 01:28:40 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, async-timeout, pytest, pytest-asyncio }:
|
2017-04-26 13:33:05 +01:00
|
|
|
buildPythonPackage rec {
|
2018-03-08 22:45:05 +00:00
|
|
|
version = "2.2.0";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "asgiref";
|
2017-04-26 13:33:05 +01:00
|
|
|
|
2018-02-20 01:28:40 +00:00
|
|
|
# PyPI tarball doesn't include tests directory
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "django";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2018-03-10 14:41:34 +00:00
|
|
|
sha256 = "0jsdkgwzswm1jbfm6d100yfvfzpic8v6ysydcnn798bbpwclj8ip";
|
2017-04-26 13:33:05 +01:00
|
|
|
};
|
|
|
|
|
2018-02-20 01:28:40 +00:00
|
|
|
propagatedBuildInputs = [ async-timeout ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest pytest-asyncio ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
2017-04-26 13:33:05 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Reference ASGI adapters and channel layers";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = https://github.com/django/asgiref;
|
|
|
|
};
|
|
|
|
}
|