[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
192/201: gnu: Add python-dotenv.
From: |
guix-commits |
Subject: |
192/201: gnu: Add python-dotenv. |
Date: |
Mon, 1 Nov 2021 23:19:18 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 791993c3ded32128e51e326f5030ac56181a4e67
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Oct 31 21:25:54 2021 -0400
gnu: Add python-dotenv.
* gnu/packages/python-xyz.scm (python-dotenv): New variable.
---
gnu/packages/python-xyz.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cd0dd7b..4487322 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12234,6 +12234,37 @@ programmatically with command-line parsers like
@code{getopt} and
(define-public python2-docopt
(package-with-python2 python-docopt))
+(define-public python-dotenv
+ (package
+ (name "python-dotenv")
+ (version "0.19.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "python-dotenv" version))
+ (sha256
+ (base32 "1f64ni36j5khzhfn01z7f53kg5byrgflm4g6hck6d56lr1f1iy0l"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-ipython" ,python-ipython)
+ ("python-mock" ,python-mock)
+ ("python-pytest" ,python-pytest)
+ ("python-sh" ,python-sh)))
+ (propagated-inputs
+ `(("python-click" ,python-click)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest")))))))
+ (home-page "https://github.com/theskumar/python-dotenv")
+ (synopsis "Environment variables configuration tool")
+ (description "Python-dotenv reads key-value pairs from a .env file and can
+set them as environment variables.")
+ (license license:bsd-3)))
+
(define-public python-pythondialog
(package
(name "python-pythondialog")
- 84/201: gnu: make-ld-wrapper: Add a LINKER argument., (continued)
- 84/201: gnu: make-ld-wrapper: Add a LINKER argument., guix-commits, 2021/11/01
- 88/201: guix: packages: Fix repacking of plain tarballs., guix-commits, 2021/11/01
- 93/201: gnu: Build all Rust packages using the latest rustc., guix-commits, 2021/11/01
- 108/201: gnu: lsof: Fix indentation., guix-commits, 2021/11/01
- 120/201: gnu: mit-krb5: Absorb 1.19.2 graft., guix-commits, 2021/11/01
- 123/201: gnu: pango: Update to 1.48.10., guix-commits, 2021/11/01
- 129/201: gnu: libsoup: Update to 3.0.1., guix-commits, 2021/11/01
- 138/201: profiles: Add a gdk-pixbuf-loaders-cache-file hook., guix-commits, 2021/11/01
- 156/201: gnu: python-six-bootstrap: Update to 1.16.0., guix-commits, 2021/11/01
- 160/201: gnu: mesa: Replace obsolete vulkan-overlay-layer build option., guix-commits, 2021/11/01
- 192/201: gnu: Add python-dotenv.,
guix-commits <=
- 198/201: gnu: ansible: Update to 4.7.0., guix-commits, 2021/11/01
- 179/201: gnu: Add polkit-duktape., guix-commits, 2021/11/01
- 61/201: gnu: gst-plugins-base: Update to 1.18.5., guix-commits, 2021/11/01
- 72/201: gnu: libnice: Update to 0.1.18-0.47a9633 and disable test-bind test., guix-commits, 2021/11/01
- 121/201: gnu: util-linux: Globally disable the lsns test., guix-commits, 2021/11/01
- 134/201: gnu: llvm: Add make-lld-wrapper, lld-wrapper and lld-as-ld-wrapper., guix-commits, 2021/11/01
- 145/201: gnu: mariadb: Only run the main test suite to avoid flaky tests., guix-commits, 2021/11/01
- 142/201: gnu: gawk: Use regular bash to cope with test suite failures., guix-commits, 2021/11/01
- 150/201: gnu: curl: Update to 7.79.1., guix-commits, 2021/11/01
- 152/201: gnu: python-dbus: Update to 1.2.18., guix-commits, 2021/11/01