summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2024-04-04 20:34:35 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-10-11 21:18:08 +0100
commitb8835828491fb7ebd5ec7d570581ab0181d47aeb (patch)
tree7fc84eb0517d21ac543df8e0b4ffd1acd293299d
parent655c77115b4b4d98959c12c524c8348e9d4c9fa7 (diff)
gnu: python-mysqlclient: Add missing inputs.
* gnu/packages/databases.scm (python-mysqlclient)[native-inputs]: Add python-setuptools and python-wheel. Change-Id: Id0343382f1ef80b0299641e2b588e1687beeab30
-rw-r--r--gnu/packages/databases.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 3a12e18165..8debe6a5bb 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -4274,7 +4274,8 @@ files or Python scripts that define a list of migration steps.")
(list #:test-flags
#~'("tests/test__mysql.py" ;tests not needing a live db
"tests/test_MySQLdb_times.py")))
- (native-inputs (list pkg-config python-pytest))
+ (native-inputs
+ (list pkg-config python-pytest python-setuptools python-wheel))
(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")