me
/
guix
Archived
1
0
Fork 0

gnu: python-tinydb: Upgrade to 4.8.0.

* gnu/packages/databases.scm (python-tinydb): Upgrade to 4.8.0.
[native-inputs]: Add python-poetry-core and python-pytest.
[build-system]: Use pyproject-build-system.
[arguments]: Remove no longer needed field.

Change-Id: Ib72f1b8c2a0749f2f0032f9dd047f10bc49d2545
master
jgart 2024-05-17 03:56:02 -05:00
parent 0846eaecd4
commit e4ee595999
No known key found for this signature in database
GPG Key ID: A52AA2B477B6DD35
1 changed files with 5 additions and 8 deletions

View File

@ -5324,18 +5324,15 @@ connecting to MS SQL and Sybase servers over TCP/IP.")
(define-public python-tinydb (define-public python-tinydb
(package (package
(name "python-tinydb") (name "python-tinydb")
(version "4.5.2") (version "4.8.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "tinydb" version)) (uri (pypi-uri "tinydb" version))
(sha256 (sha256
(base32 "1x9c4s42930wwal3ds0plwb57kg5c3gj7kbpy64c29vq478b463x")))) (base32 "0r6mavw0wm03lbmqbgglsyff3vws86ddg3q8h29glpd7qnlqdmkd"))))
(build-system python-build-system) (build-system pyproject-build-system)
;; PyPi tarball does not contain tests and github repository does not (native-inputs
;; have a setup.py file (only pyproject). (list python-poetry-core python-pytest))
(arguments `(#:tests? #f))
(propagated-inputs
(list python-typing-extensions))
(home-page "https://github.com/msiemens/tinydb") (home-page "https://github.com/msiemens/tinydb")
(synopsis "TinyDB is a lightweight document oriented database") (synopsis "TinyDB is a lightweight document oriented database")
(description (description