From 9bfc1e8c5ab133b2d002f84565cffc3d65ec607e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 29 Sep 2024 23:37:04 +0200 Subject: [PATCH] python312Packages.aiofiles: 23.2.1 -> 24.1.0 Diff: https://github.com/Tinche/aiofiles/compare/refs/tags/v23.2.1...v24.1.0 Changelog: https://github.com/Tinche/aiofiles/releases/tag/v24.1.0 --- .../python-modules/aiofiles/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/aiofiles/default.nix b/pkgs/development/python-modules/aiofiles/default.nix index a80581bc3088..8334a339d2eb 100644 --- a/pkgs/development/python-modules/aiofiles/default.nix +++ b/pkgs/development/python-modules/aiofiles/default.nix @@ -1,6 +1,6 @@ { - stdenv, lib, + stdenv, buildPythonPackage, fetchFromGitHub, hatchling, @@ -11,19 +11,19 @@ buildPythonPackage rec { pname = "aiofiles"; - version = "23.2.1"; - format = "pyproject"; + version = "24.1.0"; + pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "Tinche"; - repo = pname; + repo = "aiofiles"; rev = "refs/tags/v${version}"; - hash = "sha256-EbRQD/AoTMWAlPOMWmD0UdFjRyjt5MUBkJtcydUCdHM="; + hash = "sha256-uDKDMSNbMIlAaifpEBh1+q2bdZNUia8pPb30IOIgOAE="; }; - nativeBuildInputs = [ hatchling ]; + build-system = [ hatchling ]; nativeCheckInputs = [ pytest-asyncio @@ -45,6 +45,8 @@ buildPythonPackage rec { meta = with lib; { description = "File support for asyncio"; homepage = "https://github.com/Tinche/aiofiles"; - license = with licenses; [ asl20 ]; + changelog = "https://github.com/Tinche/aiofiles/releases/tag/v${version}"; + license = licenses.asl20; + maintainers = with maintainers; [ ]; }; }