1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 05:30:38 +02:00

gnu: python-flake8-import-order: Move to python-check.

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

Change-Id: Ib75010b435e65e1ed70745cc2c2a3709ffa8be2d
This commit is contained in:
Sharlatan Hellseher
2025-10-07 13:31:03 +01:00
parent fa404e99d7
commit 94ee99ba6b
2 changed files with 25 additions and 25 deletions

View File

@@ -877,6 +877,31 @@ providing hints about what deprecated methods should be replaced with.")
check docstrings.")
(license license:expat)))
(define-public python-flake8-import-order
(package
(name "python-flake8-import-order")
(version "0.19.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "flake8_import_order" version))
(sha256
(base32 "1cmhpiaj9bgh64mg4y93hcbsifvqa2lriz3la0iy8cbn95akqfqk"))))
(build-system pyproject-build-system)
(native-inputs
(list python-setuptools
python-pytest
python-pylama))
(propagated-inputs
(list python-pycodestyle))
(home-page "https://github.com/PyCQA/flake8-import-order")
(synopsis
"Flake8 and pylama plugin that checks the ordering of import statements")
(description
"This package provieds a flake8 and pylama plugin that checks the ordering
of import statements.")
(license license:lgpl3)))
(define-public python-flexmock
(package
(name "python-flexmock")

View File

@@ -852,31 +852,6 @@ equivalents.")
system.")
(license license:expat)))
(define-public python-flake8-import-order
(package
(name "python-flake8-import-order")
(version "0.19.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "flake8_import_order" version))
(sha256
(base32 "1cmhpiaj9bgh64mg4y93hcbsifvqa2lriz3la0iy8cbn95akqfqk"))))
(build-system pyproject-build-system)
(native-inputs
(list python-setuptools
python-pytest
python-pylama))
(propagated-inputs
(list python-pycodestyle))
(home-page "https://github.com/PyCQA/flake8-import-order")
(synopsis
"Flake8 and pylama plugin that checks the ordering of import statements")
(description
"This package provieds a flake8 and pylama plugin that checks the ordering
of import statements.")
(license license:lgpl3)))
(define-public python-flexcache
(package
(name "python-flexcache")