diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 15:51:56 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 16:18:51 +0100 |
commit | ffa791a395c6056246b96b296479512e5b655129 (patch) | |
tree | d488697e43cbb1d00be68051cf8052b1a4716485 | |
parent | 555595b9aa32b2ec22962b241143aa54cf753c56 (diff) |
gnu: poetry: Update to 2.1.3.
* gnu/packages/python-xyz.scm (poetry): Update to 2.1.3.
[arguments] <test-flags>: Ignore a few more test files.
[propagated-inputs]: Add python-findpython and python-pbs-installer.
Change-Id: I9c4b33ad7a9e7ea6a93358ecc5fde592581bec9d
-rw-r--r-- | gnu/packages/python-xyz.scm | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 480748d933..b66db1b279 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23571,19 +23571,47 @@ database, file, dict stores. Cachy supports python versions 2.7+ and 3.2+.") (define-public poetry (package (name "poetry") - (version "1.8.4") + (version "2.1.3") (source (origin (method url-fetch) (uri (pypi-uri "poetry" version)) (sha256 - (base32 "00ljr5r9h93wh68h4m242qw58mdai8gji4g0c3bfqznicvdgi42l")))) + (base32 "1505snny5sgz9zf0wx1zqw6kqly3pi9lbsl8dnbpb55ij1kvvjgj")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 1295 passed, 9 skipped #:test-flags - #~(list "--ignore=tests/installation/test_executor.py" + ;; Network access is required. + #~(list "--ignore=tests/console/commands/test_add.py" + "--ignore=tests/console/commands/test_search.py" + "--ignore=tests/console/commands/test_show.py" "--ignore=tests/installation/test_chef.py" + "--ignore=tests/installation/test_chooser.py" + "--ignore=tests/installation/test_executor.py" + "--ignore=tests/installation/test_installer.py" + "--ignore=tests/packages/test_direct_origin.py" + "--ignore=tests/publishing/test_uploader.py" + "--ignore=tests/puzzle/test_solver.py" + "--ignore=tests/repositories/test_legacy_repository.py" + "--ignore=tests/repositories/test_pypi_repository.py" + "--ignore=tests/repositories/test_repository_pool.py" + "--ignore=tests/utils/test_authenticator.py" + "--ignore=tests/utils/test_dependency_specification.py" + "--ignore=tests/utils/test_helpers.py" + ;; XXX: Various incompatibility faileurs. + "--ignore=tests/console/commands/env/test_activate.py" + "--ignore=tests/console/commands/python/test_python_list.py" + "--ignore=tests/console/commands/test_publish.py" + "--ignore=tests/console/test_application_command_not_found.py" + "--ignore=tests/inspection/test_info.py" + "--ignore=tests/inspection/test_lazy_wheel.py" + "--ignore=tests/puzzle/test_provider.py" + "--ignore=tests/utils/env/python/test_manager.py" + "--ignore=tests/utils/env/test_env.py" + "--ignore=tests/utils/test_isolated_build.py" + "--ignore=tests/vcs/git/test_backend.py" "-k" (string-join (list "not test_builder_setup_generation_runs_with_pip_editable" "test_check_invalid" @@ -23618,10 +23646,12 @@ database, file, dict stores. Cachy supports python versions 2.7+ and 3.2+.") python-dulwich python-entrypoints python-fastjsonschema + python-findpython python-importlib-metadata python-installer python-keyring python-packaging + python-pbs-installer python-pexpect python-pip python-pkginfo |