[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49834] [PATCH 1/4] gnu: Add python-dotenv.
From: |
Giacomo Leidi |
Subject: |
[bug#49834] [PATCH 1/4] gnu: Add python-dotenv. |
Date: |
Mon, 30 Aug 2021 00:53:14 +0200 |
* gnu/packages/python-xyz.scm (python-dotenv): New variable.
---
gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1d1a679133..3addb3c46a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26435,3 +26435,30 @@ a (rather superficial) static analysis, and constructs
a directed graph of the
objects in the combined source, and how they define or use each other. The
graph can be output for rendering by GraphViz or yEd.")
(license license:gpl2)))
+
+(define-public python-dotenv
+ (package
+ (name "python-dotenv")
+ (version "0.19.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "python-dotenv" version))
+ (sha256
+ (base32
+ "0wk1kfzbpqk9swvmpa9z3q170ffqql2id4b2dxrkrq58r4mbq8gm"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-click" ,python-click)))
+ (native-inputs
+ `(("python-mock" ,python-mock)
+ ("python-pytest" ,python-pytest)
+ ("python-sh" ,python-sh)))
+ (home-page
+ "https://github.com/theskumar/python-dotenv")
+ (synopsis
+ "Setup environment variables according to .env files")
+ (description
+ "This package provides the @code{python-dotenv} Python module to
+read key-value pairs from a .env file and set them as environment variables")
+ (license license:bsd-3)))
base-commit: 994d8ce394e88b55985241b7b14f6a8459bcf9e8
--
2.33.0
- [bug#49281] Add dynaconf, (continued)
- [bug#49281] Add dynaconf, Sarah Morgensen, 2021/08/04
- [bug#49834] [PATCH 1/6] gnu: Add python-flake8-todo., Giacomo Leidi, 2021/08/28
- [bug#49834] [PATCH 2/6] gnu: Add python-dotenv., Giacomo Leidi, 2021/08/28
- [bug#49834] [PATCH 4/6] gnu: python-ruamel.yaml: Update to 0.17.10., Giacomo Leidi, 2021/08/28
- [bug#49834] [PATCH 3/6] gnu: Add python-box., Giacomo Leidi, 2021/08/28
- [bug#49834] [PATCH 5/6] gnu: Add python-pep8-naming., Giacomo Leidi, 2021/08/28
- [bug#49834] [PATCH 6/6] gnu: Add dynaconf., Giacomo Leidi, 2021/08/28
- [bug#49834] Add dynaconf, Sarah Morgensen, 2021/08/28
- [bug#49834] [PATCH 1/4] gnu: Add python-dotenv.,
Giacomo Leidi <=