diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-08-09 14:19:46 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-08-09 14:20:30 +0300 |
commit | 62c3d00d1ca5f927799cff4151ccd448041aa848 (patch) | |
tree | 5f210b6b880f5b20b7515df08a84e3105ff6d142 | |
parent | c94d42d95134fc38e0b02f1c6c99e7703cf85683 (diff) | |
download | guix-62c3d00d1ca5f927799cff4151ccd448041aa848.tar.gz |
gnu: python-pytest-isort: Update to 2.0.0.
* gnu/packages/python-check.scm (python-pytest-isort): Update to 2.0.0. [native-inputs]: Add python-mock.
-rw-r--r-- | gnu/packages/python-check.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 740b9438ac..f5258d2609 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> -;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019, 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2019, 2021 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu> @@ -727,13 +727,13 @@ compliance.") (define-public python-pytest-isort (package (name "python-pytest-isort") - (version "0.3.1") + (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "pytest-isort" version)) (sha256 - (base32 "06myn5hhxs5yp8dqr1yjsgcnnxnsrvsqannm00bvaw0qml6ydzjb")))) + (base32 "05wi28zlqk3jafpjal8j523y5jcsx3xl3id9rx93qfjgkif8q6l2")))) (build-system python-build-system) (arguments `(#:phases @@ -745,6 +745,8 @@ compliance.") (propagated-inputs `(("python-isort" ,python-isort) ("python-pytest" ,python-pytest))) + (native-inputs + `(("python-mock" ,python-mock))) (home-page "https://github.com/moccu/pytest-isort/") (synopsis "Pytest plugin to check import ordering using isort") (description |