~ruther/guix-local

5a41d4a56d0d14fddc95a3e4aed12ffab3a6ca3b — Marco Rimoldi 2 years ago 85e457a
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>
1 files changed, 16 insertions(+), 7 deletions(-)

M gnu/packages/databases.scm
M gnu/packages/databases.scm => gnu/packages/databases.scm +16 -7
@@ 4207,13 4207,22 @@ files or Python scripts that define a list of migration steps.")
       (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: