~ruther/guix-local

e4ee595999a3b0656f416d190b28ec6f1ad8a74d — jgart 1 year, 10 months ago 0846eae
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
1 files changed, 5 insertions(+), 8 deletions(-)

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