diff options
author | Sharlatan Hellseher <[email protected]> | 2025-02-08 19:55:21 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-02-08 19:55:21 +0000 |
commit | 34cfd525b1a8853b47b018af217c004c20f73ae2 (patch) | |
tree | da15d3ec4454d8a2a758c36d0eb242044065f117 /gnu | |
parent | 451c8fdcf774881276db7f4d0bf5996da27e3edb (diff) |
gnu: python-doc8: Move to python-check.
* gnu/packages/python-xyz.scm (python-doc8): Move from here ...
* gnu/packages/python-check.scm: ... to here.
Change-Id: Ib82f3564bd1f06d822fce39b002b2f93c160c1d6
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-check.scm | 29 | ||||
-rw-r--r-- | gnu/packages/python-xyz.scm | 30 |
2 files changed, 29 insertions, 30 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index aac500f443..f5f615f03f 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -438,6 +438,35 @@ nosetests, etc...) in Python projects.") @command{behave}.") (license license:expat))) +(define-public python-doc8 + (package + (name "python-doc8") + (version "1.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "doc8" version)) + (sha256 + (base32 "162b6lff5pcd4sp6sfm5fds8kllnx7ipzbyvi3irgk718h0z698j")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs + (list python-docutils + python-pygments + python-restructuredtext-lint + python-stevedore + python-tomli)) + (home-page "https://launchpad.net/doc8") + (synopsis "Style checker for Sphinx (or other) RST documentation") + (description + "Doc8 is an opinionated style checker for reStructured Text and plain +text styles of documentation.") + (license license:asl2.0))) + (define-public python-eradicate (package (name "python-eradicate") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f04cfe9458..3739e055ca 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7789,36 +7789,6 @@ format.") (description "This package provides a REPL plugin for Click.") (license license:expat))) -(define-public python-doc8 - (package - (name "python-doc8") - (version "1.1.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "doc8" version)) - (sha256 - (base32 - "162b6lff5pcd4sp6sfm5fds8kllnx7ipzbyvi3irgk718h0z698j")))) - (build-system pyproject-build-system) - (native-inputs - (list python-pytest - python-setuptools - python-setuptools-scm - python-wheel)) - (propagated-inputs - (list python-docutils - python-pygments - python-restructuredtext-lint - python-stevedore - python-tomli)) - (home-page "https://launchpad.net/doc8") - (synopsis "Style checker for Sphinx (or other) RST documentation") - (description - "Doc8 is an opinionated style checker for reStructured Text and plain -text styles of documentation.") - (license license:asl2.0))) - (define-public python-pygdbmi (package (name "python-pygdbmi") |