~ruther/guix-local

b52ae8beacd72c49393a88e4f0e9a5cc35b7efb0 — Nicolas Graves 6 months ago 6d22f7d
gnu: python-pyyaml-env-tag: Update to 1.1.

* gnu/packages/python-xyz.scm (python-pyyaml-env-tag): Update to 1.1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.
[description]: Improve style.

Change-Id: I4f1334409dac936950d29ff444b1e22a0a770697
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 12 insertions(+), 7 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +12 -7
@@ 22541,19 22541,24 @@ YAML-serialized data.")
(define-public python-pyyaml-env-tag
  (package
    (name "python-pyyaml-env-tag")
    (version "0.1")
    (version "1.1")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "pyyaml_env_tag" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/waylan/pyyaml-env-tag")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1nsva88jsmwn0cb9jnrfiz4dvs9xakkpgfii7g1xwkx1pmsjc2bh"))))
    (build-system python-build-system)
        (base32 "16zkwmnlzzsdlxs9ww3b51mcarni2ykmi0v7752l7j4najxw875n"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-setuptools))
    (propagated-inputs (list python-pyyaml))
    (home-page "https://github.com/waylan/pyyaml-env-tag")
    (synopsis "Custom YAML tag for environment variables")
    (description "This package provides a custom YAML tag for referencing
environment variables in YAML files.")
    (description
     "This package provides a custom YAML tag for referencing environment
variables in YAML files.")
    (license license:expat)))

(define-public python-prompt-toolkit