Files
nixpkgs/pkgs/development/python-modules/aiostream/default.nix
Martin Weinelt 839d6885f1 python3Packages.aiostream: 0.6.4 -> 0.7.0
https://github.com/vxgmichel/aiostream/releases/tag/v0.7.0

This commit was automatically generated using update-python-libraries.
2025-08-09 18:57:55 +02:00

47 lines
978 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "aiostream";
version = "0.7.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "vxgmichel";
repo = "aiostream";
tag = "v${version}";
hash = "sha256-oOx1LG3UyMJRm/HvmrHT00jTp3+XzmvS2XRH4BJNyPE=";
};
build-system = [ setuptools ];
dependencies = [ typing-extensions ];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "aiostream" ];
meta = with lib; {
description = "Generator-based operators for asynchronous iteration";
homepage = "https://aiostream.readthedocs.io";
changelog = "https://github.com/vxgmichel/aiostream/releases/tag/${src.tag}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ rmcgibbo ];
};
}