From 79a95acdefc79dc733d2fba695d6a70feda43f23 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Thu, 18 Jan 2024 02:26:36 +0300 Subject: [PATCH] lieer: update --- lieer.scm | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 lieer.scm diff --git a/lieer.scm b/lieer.scm new file mode 100644 index 0000000..79f3396 --- /dev/null +++ b/lieer.scm @@ -0,0 +1,56 @@ +(define-module (lieer) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) + #:use-module (gnu packages time) + #:use-module (gnu packages protobuf) + #:use-module (gnu packages python-build) + #:use-module (gnu packages python-xyz) + #:use-module (gnu packages python-web) + #:use-module (gnu packages mail)) + +(define-public python-google-api-python-client + (package + (name "python-google-api-python-client") + (version "2.114.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "google-api-python-client" version)) + (sha256 + (base32 "1vb52i6w5swfsv8ikfnc3kdh8pq3c134pmp9h492d0p6c2zvnhg0")))) + (build-system pyproject-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs (list python-google-api-core python-google-auth + python-google-auth-httplib2 python-httplib2 + python-uritemplate)) + (home-page "https://github.com/googleapis/google-api-python-client/") + (synopsis "Google API Client Library for Python") + (description "Google API Client Library for Python") + (license license:asl2.0))) + +(define-public python-lieer + (package + (name "python-lieer") + (version "1.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "lieer" version)) + (sha256 + (base32 "18ljyhyphasv0vvm7nlsadk8dp59hkrcjnnjq4y36d6h5nska308")))) + (build-system pyproject-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs (list python-google-api-python-client + python-google-auth-oauthlib python-notmuch2 + python-tqdm)) + (home-page "https://github.com/gauteh/lieer") + (synopsis + "Fast fetch and two-way tag synchronization between notmuch and GMail") + (description + "Fast fetch and two-way tag synchronization between notmuch and GMail") + (license #f)))