{ stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, async-timeout, pytest, pytest-asyncio }: buildPythonPackage rec { version = "3.1.4"; pname = "asgiref"; disabled = pythonOlder "3.5"; # PyPI tarball doesn't include tests directory src = fetchFromGitHub { owner = "django"; repo = pname; rev = version; sha256 = "0rmasjrvf083c7855xnggy251gm8vaxyv970b2rd6198h8s3rldh"; }; propagatedBuildInputs = [ async-timeout ]; checkInputs = [ pytest pytest-asyncio ]; checkPhase = '' py.test ''; meta = with stdenv.lib; { description = "Reference ASGI adapters and channel layers"; license = licenses.bsd3; homepage = https://github.com/django/asgiref; }; }