nixpkgs/pkgs/development/python-modules/asgiref/default.nix

30 lines
716 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, async-timeout, pytest, pytest-asyncio }:
2017-04-26 12:33:05 +00:00
buildPythonPackage rec {
version = "3.2.2";
pname = "asgiref";
2017-04-26 12:33:05 +00:00
disabled = pythonOlder "3.5";
# PyPI tarball doesn't include tests directory
src = fetchFromGitHub {
owner = "django";
repo = pname;
rev = version;
sha256 = "11lnynspgdi5zp3hd8piy8h9fq0s3ck6lzyl7h0fn2mxxyx83yh2";
2017-04-26 12:33:05 +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;
};
}