~ruther/guix-local

fa404e99d70617373eb18a3e7892247ae7a3dbb7 — Sharlatan Hellseher 4 months ago ec16da8
gnu: python-flake8-import-order: Update to 0.19.2.

* gnu/packages/python-xyz.scm (python-flake8-import-order): Update to 0.19.2.
[source] <pypi-uri>: Adjust according to PyPI archive name.
[propagated-inputs]: Remove python-setuptools.
[native-inputs]: Remove python-wheel and python-flake8.

Change-Id: Icb81bd079c7848432de5f45206ba27d655f9a8ba
1 files changed, 9 insertions(+), 6 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +9 -6
@@ 855,17 855,20 @@ system.")
(define-public python-flake8-import-order
  (package
    (name "python-flake8-import-order")
    (version "0.18.2")
    (version "0.19.2")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "flake8-import-order" version))
       (uri (pypi-uri "flake8_import_order" version))
       (sha256
        (base32 "03lh1n98lx8ncrr6n8cv5qj3birvqyqbpfhisw4hqgnsjbw42fg2"))))
        (base32 "1cmhpiaj9bgh64mg4y93hcbsifvqa2lriz3la0iy8cbn95akqfqk"))))
    (build-system pyproject-build-system)
    (propagated-inputs (list python-pycodestyle python-setuptools))
    (native-inputs (list python-setuptools python-wheel python-pytest
                         python-pylama python-flake8))
    (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")