Files
nixpkgs/pkgs/development/python-modules/async-generator/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

39 lines
842 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 = {
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 ];
};
}