[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52696] [PATCH v2 03/11] gnu: Add python-pytest-pydocstyle.
From: |
Vinicius Monego |
Subject: |
[bug#52696] [PATCH v2 03/11] gnu: Add python-pytest-pydocstyle. |
Date: |
Fri, 14 Jan 2022 20:09:19 +0000 |
* gnu/packages/python-check.scm (python-pytest-pydocstyle): New variable.
---
gnu/packages/python-check.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 6d8e3560d9..687750f423 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -686,6 +686,31 @@ framework and makes it easy to undo any monkey patching.
The fixtures are:
in Pytest.")
(license license:bsd-3)))
+(define-public python-pytest-pydocstyle
+ (package
+ (name "python-pytest-pydocstyle")
+ (version "2.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/henry0312/pytest-pydocstyle")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0w6fivz4nb4b70wzmi5sk17qs9pd05rnh03fmch6v00r3dmfpk39"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ; test requires the package itself
+ (propagated-inputs
+ `(("python-pydocstyle" ,python-pydocstyle)
+ ("python-pytest" ,python-pytest))) ; apparently required
+ (home-page "https://github.com/henry0312/pytest-pydocstyle")
+ (synopsis "Pytest plugin to run @command{pydocstyle}")
+ (description "This package provides a Pytest plugin to run
+@command{pydocstyle}.")
+ (license license:expat)))
+
(define-public python-covdefaults
(package
(name "python-covdefaults")
--
2.30.2
- [bug#52696] [PATCH v2 01/11] gnu: python-anyqt: Update to 0.0.13., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 07/11] gnu: python-qtconsole: Update to 4.7.7., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 02/11] gnu: python-qasync: Update to 0.22.0., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 08/11] gnu: python-qtconsole: Enable tests., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 06/11] gnu: python-opentsne: Update to 0.6.1., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 05/11] gnu: python-pynndescent: Update to 0.5.5., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 03/11] gnu: Add python-pytest-pydocstyle.,
Vinicius Monego <=
- [bug#52696] [PATCH v2 04/11] gnu: python-pytest-pycodestyle: Update to 2.2.0., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 10/11] gnu: python-orange-widget-base: Update to 4.16.1., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 09/11] gnu: python-orange-canvas-core: Update to 0.1.24., Vinicius Monego, 2022/01/14
- [bug#52696] [PATCH v2 11/11] gnu: orange: Update to 3.31.1., Vinicius Monego, 2022/01/14