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
This commit is contained in:
Vinicius Monego 2025-06-25 23:58:56 -03:00
parent 6924e9bcc2
commit 077a891608
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -852,16 +852,23 @@ auto-completion and syntax highlighting.")
(define-public python-pgspecial (define-public python-pgspecial
(package (package
(name "python-pgspecial") (name "python-pgspecial")
(version "1.13.0") (version "2.2.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pgspecial" version)) (uri (pypi-uri "pgspecial" version))
(sha256 (sha256
(base32 "00ddkf565rjcxmfml1z4mmkns1aq8x5s5g85xmnz2scln42y4irq")))) (base32 "17c4qjvi83b3im9fb00cdzzb24v5xis6y1625l9v0yzggg67yv6s"))))
(build-system python-build-system) (build-system pyproject-build-system)
(propagated-inputs (native-inputs (list python-pytest
(list python-click python-sqlparse python-psycopg2)) 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") (home-page "https://github.com/dbcli/pgspecial")
(synopsis (synopsis
"Python implementation of PostgreSQL meta commands (backslash commands)") "Python implementation of PostgreSQL meta commands (backslash commands)")