python3Packages.aiofiles: 24.1.0 -> 25.1.0

https://github.com/Tinche/aiofiles/releases/tag/v25.1.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-01-21 18:31:32 +01:00
parent f26066c6ef
commit 84aebaa353
@@ -4,23 +4,27 @@
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aiofiles";
version = "24.1.0";
version = "25.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Tinche";
repo = "aiofiles";
tag = "v${version}";
hash = "sha256-uDKDMSNbMIlAaifpEBh1+q2bdZNUia8pPb30IOIgOAE=";
hash = "sha256-NBmzoUb2una3+eWqR1HraVPibaRb9I51aYwskrjxskQ=";
};
build-system = [ hatchling ];
build-system = [
hatchling
hatch-vcs
];
nativeCheckInputs = [
pytest-asyncio
@@ -42,7 +46,7 @@ buildPythonPackage rec {
meta = {
description = "File support for asyncio";
homepage = "https://github.com/Tinche/aiofiles";
changelog = "https://github.com/Tinche/aiofiles/releases/tag/v${version}";
changelog = "https://github.com/Tinche/aiofiles/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = [ ];
};