about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/binderlite.scm13
1 files changed, 13 insertions, 0 deletions
diff --git a/gn/packages/binderlite.scm b/gn/packages/binderlite.scm
index 6b2550f..aada6b9 100644
--- a/gn/packages/binderlite.scm
+++ b/gn/packages/binderlite.scm
@@ -1,6 +1,7 @@
 (define-module (gn packages binderlite)
   #:use-module (gnu packages)
   #:use-module (gnu packages python-web)
+  #:use-module (gnu packages python-xyz)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -32,3 +33,15 @@
 will be rewritten in Common Lisp.  If we stay with Python I recommend
 switching this library out for @code{python-furl} or similar."))))
 
+(define-public python-dotenv-for-binderlite
+  ;; https://issues.guix.gnu.org/54712
+    (package (inherit python-dotenv)
+      (name "python-dotenv-for-binderlite")
+      (version "0.20.0")
+      (source
+        (origin
+          (method url-fetch)
+          (uri (pypi-uri "python-dotenv" version))
+          (sha256
+            (base32 "13s9imfd0k4d7b1qy5wfqzw5vyj6rhmcrccsdz1l4g39b55b1qxp"))))))
+