e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
38 lines
832 B
Nix
38 lines
832 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonAtLeast
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "async-generator";
|
|
version = "1.10";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
pname = "async_generator";
|
|
inherit version;
|
|
hash = "sha256-brs9EGwSkgqq5CzLb3h+9e79zdFm6j1ij6hHar5xIUQ=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.12") [
|
|
"test_aclose_on_unstarted_generator"
|
|
];
|
|
|
|
pythonImportsCheck = [ "async_generator" ];
|
|
|
|
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 ];
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|