GNU bug report logs -
#60838
[PATCH 0/8] Add datasette and python-sqlite-utils.
Previous Next
Reported by: Felix Gruber <felgru <at> posteo.net>
Date: Sun, 15 Jan 2023 21:49:01 UTC
Severity: normal
Tags: patch
Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
* gnu/packages/databases.scm (datasette): New variable.
---
gnu/packages/databases.scm | 47 ++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index d9ea2bba34..72960396fc 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -59,6 +59,7 @@
;;; Copyright © 2022 muradm <mail <at> muradm.net>
;;; Copyright © 2022 Thomas Albers Raviola <thomas <at> thomaslabs.org>
;;; Copyright © 2021, 2022 jgart <jgart <at> dismail.de>
+;;; Copyright © 2023 Felix Gruber <felgru <at> posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -5049,3 +5050,49 @@ (define-public python-dogpile.cache
provides API hooks which integrate these cache backends with the locking
mechanism of @code{dogpile}.")
(license license:expat)))
+
+(define-public datasette
+ (package
+ (name "datasette")
+ (version "0.64.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "datasette" version))
+ (sha256
+ (base32
+ "1z2qwj7gmyph4dnbr44p332f9ydpv7c4z5jiyai12bmgsgdnxqg9"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f ; pypi package contains no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'loosen-requirements
+ (lambda _
+ ;; The package needlessly specifies exact versions
+ ;; of dependencies, when it works fine with others.
+ (substitute* "setup.py"
+ (("(black)==[0-9\\.]+" all package)
+ package)))))))
+ (propagated-inputs (list python-aiofiles
+ python-asgi-csrf
+ python-asgiref
+ python-click-7
+ python-click-default-group-wheel
+ python-httpx
+ python-hupper
+ python-itsdangerous
+ python-janus
+ python-jinja2
+ python-mergedeep
+ python-pint
+ python-pluggy-next
+ python-pyyaml
+ python-uvicorn))
+ (home-page "https://datasette.io/")
+ (synopsis "Multi-tool for exploring and publishing data")
+ (description "Datasette is a tool for exploring and publishing data.
+It helps people take data of any shape or size and publish that as an
+interactive, explorable website and accompanying API.")
+ (license license:asl2.0)))
--
2.39.2
This bug report was last modified 2 years and 50 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.