diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 21:33:29 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 23:37:05 -0400 |
commit | ca0e4a4b5e4c1c65a3ac080e520f61293e3a9b7a (patch) | |
tree | e1bde7f710b747596d8d821401be8564f64e954f | |
parent | 55f051e28ca94b529cfbe2c41157815fb4c810f6 (diff) | |
download | guix-ca0e4a4b5e4c1c65a3ac080e520f61293e3a9b7a.tar.gz |
gnu: python-pluggy: Update to 1.0.0.
* gnu/packages/python-xyz.scm (python-pluggy): Update to 1.0.0. (python-pluggy-next): Delete variable. * gnu/packages/check.scm (python-pytest-7.1) [propagated-inputs]: Remove python-pluggy replacement. * gnu/packages/databases.scm (datasette) [propagated-inputs]: Replace python-pluggy-next with python-pluggy.
-rw-r--r-- | gnu/packages/check.scm | 1 | ||||
-rw-r--r-- | gnu/packages/databases.scm | 2 | ||||
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
3 files changed, 4 insertions, 19 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 1d9a4413f1..90a6fba2b9 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1328,7 +1328,6 @@ and many external plugins.") (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version))))))) (propagated-inputs (modify-inputs (package-propagated-inputs python-pytest) - (replace "python-pluggy" python-pluggy-next) (replace "python-toml" python-tomli))))) (define-public python-pytest-bootstrap diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index b37bb255a4..cd3562bb8c 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -5166,7 +5166,7 @@ mechanism of @code{dogpile}.") python-jinja2 python-mergedeep python-pint - python-pluggy-next + python-pluggy python-pyyaml python-uvicorn)) (native-inputs diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 373ddc69e3..6cfefc93b2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15582,36 +15582,22 @@ library as well as on the command line.") (define-public python-pluggy (package (name "python-pluggy") - (version "0.13.1") + (version "1.0.0") (source (origin (method url-fetch) (uri (pypi-uri "pluggy" version)) (sha256 (base32 - "1c35qyhvy27q9ih9n899f3h4sdnpgq027dbiilly2qb5cvgarchm")))) + "0n8iadlas2z1b4h0fc73b043c7iwfvx9rgvqm1azjmffmhxkf922")))) (build-system python-build-system) - (native-inputs - (list python-setuptools-scm)) + (native-inputs (list python-setuptools-scm)) (synopsis "Plugin and hook calling mechanism for Python") (description "Pluggy is an extraction of the plugin manager as used by Pytest but stripped of Pytest specific details.") (home-page "https://pypi.org/project/pluggy/") (license license:expat))) -;;; TODO: Make this the default python-pluggy in the next rebuild cycle. -(define-public python-pluggy-next - (package - (inherit python-pluggy) - (version "1.0.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "pluggy" version)) - (sha256 - (base32 - "0n8iadlas2z1b4h0fc73b043c7iwfvx9rgvqm1azjmffmhxkf922")))))) - (define-public python-plumbum (package (name "python-plumbum") |