Put in earplugs

This commit is contained in:
nik gaffney 2024-06-19 10:23:54 +02:00
parent d6d26f810f
commit 4f651f22a6
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -17,8 +17,6 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
;; via guix import pypi -r pyzotero
(define-module (zzkt packages python-xyz) (define-module (zzkt packages python-xyz)
#:use-module (gnu packages python-web) ;; python-requests #:use-module (gnu packages python-web) ;; python-requests
#:use-module (gnu packages python-xyz) ;; python-bibtexparser #:use-module (gnu packages python-xyz) ;; python-bibtexparser
@ -36,6 +34,8 @@
#:use-module (guix build-system pyproject) #:use-module (guix build-system pyproject)
#:use-module (guix build-system trivial)) #:use-module (guix build-system trivial))
;; via guix import pypi -r pyzotero
(define-public python-pyzotero (define-public python-pyzotero
(package (package
(name "python-pyzotero") (name "python-pyzotero")
@ -58,3 +58,25 @@
(synopsis "Python wrapper for the Zotero API") (synopsis "Python wrapper for the Zotero API")
(description "Python wrapper for the Zotero API") (description "Python wrapper for the Zotero API")
(license license:expat))) (license license:expat)))
;; via guix import pypi -r mausoleum
(define-public python-mausoleum
(package
(name "python-mausoleum")
(version "0.10.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "mausoleum" version))
(sha256
(base32 "160n1i4aabzwlrjyn8vlc26acvwwx9kizp52bqy5znyz58rmbc6a"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-appdirs
python-click
python-pytoml))
(home-page "https://github.com/mandeep/Mausoleum")
(synopsis "A Python GUI, CLI, and wrapper for Tomb")
(description
"This package provides a Python GUI, CLI, and wrapper for Tomb.")
(license #f)))