[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50018] [PATCH v3 02/21] gnu: Add python-click-didyoumean.
From: |
Vinicius Monego |
Subject: |
[bug#50018] [PATCH v3 02/21] gnu: Add python-click-didyoumean. |
Date: |
Thu, 16 Sep 2021 16:20:53 +0000 |
* gnu/packages/python-xyz.scm (python-click-didyoumean): New variable.
---
gnu/packages/python-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 675437b726..9262650afa 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6961,6 +6961,40 @@ in an image. It then applies the colors system-wide and
on-the-fly in all of
your favourite programs.")
(license license:expat)))
+(define-public python-click-didyoumean
+ (package
+ (name "python-click-didyoumean")
+ (version "0.0.3")
+ (source
+ (origin
+ ;; There are no tests in the PyPI tarball.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/click-contrib/click-didyoumean")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qb3csx27vby8w5534l4la08sq2nv7wb2fzghv1glrxnxk1a73vg"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f ; FIXME: tests fail because of single/double quote mismatch
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" "-m" "pytest")))))))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (propagated-inputs
+ `(("python-click" ,python-click)))
+ (home-page "https://github.com/timofurrer/click-didyoumean")
+ (synopsis "Git-like did-you-mean feature in Click")
+ (description
+ "This plugin enables git-like did-you-mean feature in Click.")
+ (license license:expat)))
+
(define-public python-pywinrm
(package
(name "python-pywinrm")
--
2.30.2
- [bug#50018] [PATCH v3 00/21] Update Celery to version 5., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 03/21] gnu: Add python-pytest-subtests., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 05/21] gnu: python-botocore: Update to 1.21.42., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 01/21] gnu: Add python-click-repl., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 02/21] gnu: Add python-click-didyoumean.,
Vinicius Monego <=
- [bug#50018] [PATCH v3 04/21] gnu: python-cfn-lint: Respect #:tests?., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 10/21] gnu: python-moto: Update to 2.2.7., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 09/21] gnu: python-aws-sam-translator: Change source for tests., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 16/21] gnu: Add python-pytest-celery., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 14/21] gnu: python-amqp: Update to 5.0.6., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 19/21] gnu: Remove python2-celery., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 08/21] gnu: awscli: Update to 1.20.42., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 06/21] gnu: python-s3transfer: Update to 0.5.0., Vinicius Monego, 2021/09/16
- [bug#50018] [PATCH v3 12/21] gnu: python-vine: Update to 5.0.0., Vinicius Monego, 2021/09/16