Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / async-generator / default.nix
blob92c281580d9e8f948cdd63411a3f72ae512cc0d8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonAtLeast
5 , pythonOlder
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "async-generator";
11   version = "1.10";
12   format = "setuptools";
14   disabled = pythonOlder "3.5";
16   src = fetchPypi {
17     pname = "async_generator";
18     inherit version;
19     hash = "sha256-brs9EGwSkgqq5CzLb3h+9e79zdFm6j1ij6hHar5xIUQ=";
20   };
22   nativeCheckInputs = [
23     pytestCheckHook
24   ];
26   disabledTests = lib.optionals (pythonAtLeast "3.12") [
27     "test_aclose_on_unstarted_generator"
28   ];
30   pythonImportsCheck = [ "async_generator" ];
32   meta = with lib; {
33     description = "Async generators and context managers for Python 3.5+";
34     homepage = "https://github.com/python-trio/async_generator";
35     license = with licenses; [ mit asl20 ];
36     maintainers = with maintainers; [ dotlambda ];
37   };