[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/19: gnu: Add python-tinydb.
From: |
guix-commits |
Subject: |
02/19: gnu: Add python-tinydb. |
Date: |
Tue, 23 Nov 2021 04:26:32 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 3091ca3ee380509925174e367051c4418570332f
Author: jgart <jgart@dismail.de>
AuthorDate: Thu Nov 11 22:45:02 2021 -0500
gnu: Add python-tinydb.
* gnu/packages/databases.scm (python-tinydb): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/databases.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 5edc4e2..159f89e 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -4098,6 +4098,29 @@ PostreSQL, SQLite, ODBC and MySQL.")
connecting to MS SQL and Sybase servers over TCP/IP.")
(license license:lgpl2.0+)))
+(define-public python-tinydb
+ (package
+ (name "python-tinydb")
+ (version "4.5.2")
+ (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
+ `(("python-typing-extensions" ,python-typing-extensions)))
+ (home-page "https://github.com/msiemens/tinydb")
+ (synopsis "TinyDB is a lightweight document oriented database")
+ (description
+ "TinyDB is a small document oriented database written in pure Python
+with no external dependencies. The targets are small apps that would
+be blown away by a SQL-DB or an external database server.")
+ (license license:expat)))
+
(define-public sequeler
(package
(name "sequeler")
- branch master updated (4788639 -> daf7b5e), guix-commits, 2021/11/23
- 03/19: gnu: Add stcgal., guix-commits, 2021/11/23
- 05/19: gnu: Add python-dbus-next., guix-commits, 2021/11/23
- 01/19: maint: "make dist" builds tarballs in 'ustar' format., guix-commits, 2021/11/23
- 02/19: gnu: Add python-tinydb.,
guix-commits <=
- 04/19: gnu: python-xcffib: Upgrade to 0.11.1., guix-commits, 2021/11/23
- 14/19: system: Warn about swap-devices format change, guix-commits, 2021/11/23
- 18/19: guix graph: Show '-M' in '--help' output., guix-commits, 2021/11/23
- 09/19: gnu: piper: Update to 0.6., guix-commits, 2021/11/23
- 15/19: system: Add swap flags., guix-commits, 2021/11/23
- 12/19: doc: Fix the example of "Using virt-viewer with Spice"., guix-commits, 2021/11/23
- 11/19: docker: Enable arm64 docker image building for 'guix pack'., guix-commits, 2021/11/23
- 16/19: system: Filter out boot dependencies from swap-space., guix-commits, 2021/11/23
- 13/19: system: Rework swap space support, add dependencies., guix-commits, 2021/11/23
- 19/19: Update NEWS., guix-commits, 2021/11/23