From 2eb650d4eb1db2e8a1fd51b2fc62c7dca00f9d94 Mon Sep 17 00:00:00 2001 From: Ryan Sundberg Date: Fri, 7 May 2021 08:16:34 -0700 Subject: [PATCH 30/55] python-flake8-docstrings: new package (via guix import) --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0a1a8ba5b2..c096be93d8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9428,6 +9428,29 @@ These should be used in preference to using a backslash for line continuation. @end quotation") (license license:asl2.0))) +(define-public python-flake8-docstrings + (package + (name "python-flake8-docstrings") + (version "1.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "flake8-docstrings" version)) + (sha256 + (base32 + "0jy3i9q57kl45gpwlfdvhigsa7gbx5hjyp055bkghjh60siwdrwz")))) + (build-system python-build-system) + (propagated-inputs + `(("python-flake8" ,python-flake8) + ("python-pydocstyle" ,python-pydocstyle))) + (home-page + "https://gitlab.com/pycqa/flake8-docstrings") + (synopsis + "Extension for flake8 which uses pydocstyle to check docstrings") + (description + "Extension for flake8 which uses pydocstyle to check docstrings") + (license license:expat))) + (define-public python-flake8-implicit-str-concat (package (name "python-flake8-implicit-str-concat") -- 2.31.1