diff options
author | jgart | 2022-04-04 17:45:05 -0400 |
---|---|---|
committer | jgart | 2022-04-04 17:45:05 -0400 |
commit | e7746be763c2593a02439cbc0f440c554ef7b217 (patch) | |
tree | e704d29b5d973e274521e823b8486a5a9eda99ba /gn | |
parent | 123a4dc64655f59ebcc64c6c9ece17d81ec63b79 (diff) | |
download | guix-bioinformatics-e7746be763c2593a02439cbc0f440c554ef7b217.tar.gz |
add python-dotenv-for-binderlite
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/binderlite.scm | 13 |
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")))))) + |