diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-06-25 23:58:56 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-06-26 00:42:02 -0300 |
| commit | 077a8916085022175b995c8eb21c4e908f23e8eb (patch) | |
| tree | ecf6b6b3a50cc8daf25bd95951b8ddede2422e62 /gnu/packages/databases.scm | |
| parent | 6924e9bcc266485b728d8aa255cdddb727ea1fed (diff) | |
gnu: python-pgspecial: Update to 2.2.1.
* gnu/packages/databases.scm (python-pgspecial): Update to 2.2.1.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools,
python-setuptools-scm, python-wheel.
[propagated-inputs]: Remove python-psycopg2. Add python-configobj,
python-psycopg, python-typing-extensions.
Change-Id: I06176bbae3e3625fde412bd95be7efe10059c557
Diffstat (limited to 'gnu/packages/databases.scm')
| -rw-r--r-- | gnu/packages/databases.scm | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index f835a2e76a9..47b0d6c808f 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -852,16 +852,23 @@ auto-completion and syntax highlighting.") (define-public python-pgspecial (package (name "python-pgspecial") - (version "1.13.0") + (version "2.2.1") (source (origin (method url-fetch) (uri (pypi-uri "pgspecial" version)) (sha256 - (base32 "00ddkf565rjcxmfml1z4mmkns1aq8x5s5g85xmnz2scln42y4irq")))) - (build-system python-build-system) - (propagated-inputs - (list python-click python-sqlparse python-psycopg2)) + (base32 "17c4qjvi83b3im9fb00cdzzb24v5xis6y1625l9v0yzggg67yv6s")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest + python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs (list python-click + python-configobj + python-psycopg + python-sqlparse + python-typing-extensions)) (home-page "https://github.com/dbcli/pgspecial") (synopsis "Python implementation of PostgreSQL meta commands (backslash commands)") |
