1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-flake8-class-newline: Move to pythn-check.

* gnu/packages/python-xyz.scm (python-flake8-class-newline): Move from
here ...
* gnu/packages/python-check.scm: ... to here.

Change-Id: I39dfd665d74e98771a10b1b836aa3919e97605c0
This commit is contained in:
Sharlatan Hellseher
2025-10-07 13:13:45 +01:00
parent 65f8141876
commit d98dd58551
2 changed files with 25 additions and 23 deletions

View File

@@ -38,6 +38,7 @@
;;; Copyright © 2025 Matthew Elwin <elwin@northwestern.edu>
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2025 Sergio Pastor Pérez <sergio.pastorperez@gmail.com>
;;; Copyright © 2025 Zheng Junjie <z572@z572.online>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -772,6 +773,30 @@ test itself.")
being used as variables or parameters.")
(license license:gpl2)))
(define-public python-flake8-class-newline
(package
(name "python-flake8-class-newline")
(version "1.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/AlexanderVanEck/flake8-class-newline")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "15fw0iw2c3a3n2aarfgq7147406489xd8nk0kkj9k2x98fkwwnyh"))))
(build-system pyproject-build-system)
(arguments (list #:test-backend #~'unittest))
(propagated-inputs (list python-flake8))
(native-inputs (list python-setuptools))
(home-page "https://github.com/AlexanderVanEck/flake8-class-newline")
(synopsis "Flake8 lint for newline after class definitions")
(description
"This package provides a flake8 extension to lint for newline after class
definitions.")
(license license:expat)))
(define-public python-flake8-comprehensions
(package
(name "python-flake8-comprehensions")

View File

@@ -852,29 +852,6 @@ equivalents.")
system.")
(license license:expat)))
(define-public python-flake8-class-newline
(package
(name "python-flake8-class-newline")
(version "1.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/AlexanderVanEck/flake8-class-newline")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "15fw0iw2c3a3n2aarfgq7147406489xd8nk0kkj9k2x98fkwwnyh"))))
(build-system pyproject-build-system)
(arguments (list #:test-backend #~'unittest))
(propagated-inputs (list python-flake8))
(native-inputs (list python-setuptools))
(home-page "https://github.com/AlexanderVanEck/flake8-class-newline")
(synopsis "Flake8 lint for newline after class definitions")
(description "This package provides a flake8 extension to lint for newline
after class definitions.")
(license license:expat)))
(define-public python-flake8-docstrings
(package
(name "python-flake8-docstrings")