mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
85e457a417
commit
5a41d4a56d
1 changed files with 16 additions and 7 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue