From 517c13624a9643c4f47b8e5bc623b39e68db8027 Mon Sep 17 00:00:00 2001 From: Marco Rimoldi Date: Sun, 18 Feb 2024 23:12:07 +0100 Subject: gnu: python-mysqlclient: Update to 2.2.4. * gnu/packages/databases.scm (python-mysqlclient): Update to 2.2.4. [arguments]<#:phases>: Remove 'fix-test phase. [native-inputs]: Add pkg-config. Change-Id: I57a0b84eb0d56f9cea619b226090cc1ccd84812b Signed-off-by: Hilton Chain --- gnu/packages/databases.scm | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 9b3d6ffbed..238ba34053 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -4201,26 +4201,19 @@ (define-public yoyo-migrations (define-public python-mysqlclient (package (name "python-mysqlclient") - (version "2.0.1") + (version "2.2.4") (source (origin (method url-fetch) (uri (pypi-uri "mysqlclient" version)) (sha256 - (base32 "1rf5l8hazs3v18hmcrm90z3hi9wxv553ipwd5l6kj8j7l6p7abzv")))) + (base32 "0hdznfz9095d2qhl7awbp39s7wpqbxn37xzan487qzaf8srrzg1k")))) (build-system pyproject-build-system) (arguments - (list #:phases - #~(modify-phases %standard-phases - (add-before 'check 'fix-test - (lambda _ - (substitute* "tests/test_MySQLdb_times.py" - (("^import mock") - "from unittest import mock"))))) - #:test-flags + (list #:test-flags #~'("tests/test__mysql.py" ;tests not needing a live db "tests/test_MySQLdb_times.py"))) - (native-inputs (list python-pytest)) + (native-inputs (list pkg-config python-pytest)) (inputs (list mariadb-connector-c)) (home-page "https://github.com/PyMySQL/mysqlclient") (synopsis "MySQLdb is an interface to the popular MySQL database server for Python") -- cgit v1.2.3