gnu: python-mysqlclient: Enable selected tests.

* gnu/packages/databases.scm (python-mysqlclient)
[build-system]: Change to pyproject-build-system.
[arguments]
<#:phases>: Add 'fix-test phase.
<#:test-flags>: Specify tests to run.
[native-inputs]: Add python-pytest.
[inputs]: Replace mariadb:dev with mariadb-connector-c.
[home-page]: Update.

Change-Id: I5ae0873155f9a7cc90a318762b77864665fadc01
Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
Marco Rimoldi 2024-02-18 23:12:05 +01:00 committed by Hilton Chain
parent 85e457a417
commit 5a41d4a56d
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -4207,13 +4207,22 @@ (define-public python-mysqlclient
(method url-fetch)
(uri (pypi-uri "mysqlclient" version))
(sha256
(base32
"1rf5l8hazs3v18hmcrm90z3hi9wxv553ipwd5l6kj8j7l6p7abzv"))))
(build-system python-build-system)
(arguments '(#:tests? #f)) ;XXX: requires a live database
(inputs
`(("mysql-dev" ,mariadb "dev")))
(home-page "https://github.com/PyMySQL/mysqlclient-python")
(base32 "1rf5l8hazs3v18hmcrm90z3hi9wxv553ipwd5l6kj8j7l6p7abzv"))))
(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
#~'("tests/test__mysql.py" ;tests not needing a live db
"tests/test_MySQLdb_times.py")))
(native-inputs (list 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")
(description "MySQLdb is an interface to the popular MySQL database server
for Python. The design goals are: