diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-20 23:00:07 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-20 23:01:43 +0100 |
| commit | dbf8e5d7e4c0c40a285ebec2a3742e26ec34fbd2 (patch) | |
| tree | 071ce4d4ae3eba3a7b91ae428f1664f887b73fb0 /gnu | |
| parent | 0e68fb6788750154630635e86de48f0edd6c78d4 (diff) | |
gnu: Add python-envs.
* gnu/packages/python-xyz.scm (python-envs): New variable.
Change-Id: I2d660f2f24a150ba8cb4dce9e3c3e101b1df0425
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ffd6685de61..af876cef4be 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -783,6 +783,29 @@ implemented in pure Python, and most of them are also implemented in C.") packaging tasks.") (license license:expat))) +(define-public python-envs + (package + (name "python-envs") + (version "1.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "envs" version)) + (sha256 + (base32 "160358zskyg6g606lndjcv7yd2nv5f7ca14y55lds72xk333b14x")))) + (build-system pyproject-build-system) + (arguments + (list #:test-backend #~'unittest)) + (native-inputs + (list python-poetry-core)) + (home-page "https://github.com/capless/envs") + (synopsis "Easy access of environment variables from Python") + (description + "This package implements a functionality to access of environment +variables from Python with support for strings, booleans, list, tuples, and +dicts.") + (license license:asl2.0))) + (define-public python-exitcode (package (name "python-exitcode") |
