From a2c2e516f43abcb48febca49f8e12f936eea0e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 15 Apr 2025 21:55:17 -0700 Subject: [PATCH] python313Packages.multidict: 6.2.0 -> 6.4.3 Diff: https://github.com/aio-libs/multidict/compare/refs/tags/v6.2.0...v6.4.3 Changelog: https://github.com/aio-libs/multidict/blob/v6.4.3/CHANGES.rst --- pkgs/development/python-modules/multidict/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/multidict/default.nix b/pkgs/development/python-modules/multidict/default.nix index 3a580edbad66..92f2bc9e6b41 100644 --- a/pkgs/development/python-modules/multidict/default.nix +++ b/pkgs/development/python-modules/multidict/default.nix @@ -2,6 +2,7 @@ lib, fetchFromGitHub, buildPythonPackage, + objgraph, pytestCheckHook, pytest-codspeed, pytest-cov-stub, @@ -12,17 +13,14 @@ buildPythonPackage rec { pname = "multidict"; - version = "6.2.0"; - - disabled = pythonOlder "3.8"; - + version = "6.4.3"; pyproject = true; src = fetchFromGitHub { owner = "aio-libs"; repo = "multidict"; tag = "v${version}"; - hash = "sha256-eiTD6vMSLMLlDmVwht6ZdGTHlyC62W4ecdiuhfJNaMQ="; + hash = "sha256-N5SmUhR2+1wnnhNNEGY2LKn0roDx781BvSw83CQj6tc="; }; postPatch = '' @@ -38,6 +36,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + objgraph pytestCheckHook pytest-codspeed pytest-cov-stub @@ -51,7 +50,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "multidict" ]; meta = with lib; { - changelog = "https://github.com/aio-libs/multidict/blob/v${version}/CHANGES.rst"; + changelog = "https://github.com/aio-libs/multidict/blob/${src.tag}/CHANGES.rst"; description = "Multidict implementation"; homepage = "https://github.com/aio-libs/multidict/"; license = licenses.asl20;