~ruther/guix-local

517c13624a9643c4f47b8e5bc623b39e68db8027 — Marco Rimoldi 2 years ago 5a41d4a
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 <hako@ultrarare.space>
1 files changed, 4 insertions(+), 11 deletions(-)

M gnu/packages/databases.scm
M gnu/packages/databases.scm => gnu/packages/databases.scm +4 -11
@@ 4201,26 4201,19 @@ files or Python scripts that define a list of migration steps.")
(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")