blob: f6de4c6d26cfaadcd2671cb5d0976727c017e5af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
pythonAtLeast,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "async-generator";
version = "1.10";
format = "setuptools";
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 = {
description = "Async generators and context managers for Python 3.5+";
homepage = "https://github.com/python-trio/async_generator";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|