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

29 lines
763 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy35, pytest, pytest-asyncio }:
buildPythonPackage rec {
pname = "async_generator";
2018-08-13 07:22:13 +00:00
version = "1.10";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2018-08-13 07:22:13 +00:00
sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144";
};
checkInputs = [ pytest pytest-asyncio ];
checkPhase = ''
pytest -W error -ra -v --pyargs async_generator
'';
# disable tests on python3.5 to avoid circular dependency with pytest-asyncio
doCheck = !isPy35;
meta = with lib; {
description = "Async generators and context managers for Python 3.5+";
homepage = "https://github.com/python-trio/async_generator";
license = with licenses; [ mit asl20 ];
};
}