diff options
| -rw-r--r-- | gnu/packages/python-xyz.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fb4e417eae..621fe107cb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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") |
