mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
555595b9aa
commit
ffa791a395
1 changed files with 33 additions and 3 deletions
|
@ -23571,19 +23571,47 @@ database, file, dict stores. Cachy supports python versions 2.7+ and 3.2+.")
|
||||||
(define-public poetry
|
(define-public poetry
|
||||||
(package
|
(package
|
||||||
(name "poetry")
|
(name "poetry")
|
||||||
(version "1.8.4")
|
(version "2.1.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "poetry" version))
|
(uri (pypi-uri "poetry" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "00ljr5r9h93wh68h4m242qw58mdai8gji4g0c3bfqznicvdgi42l"))))
|
(base32 "1505snny5sgz9zf0wx1zqw6kqly3pi9lbsl8dnbpb55ij1kvvjgj"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
;; tests: 1295 passed, 9 skipped
|
||||||
#:test-flags
|
#: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_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
|
"-k" (string-join
|
||||||
(list "not test_builder_setup_generation_runs_with_pip_editable"
|
(list "not test_builder_setup_generation_runs_with_pip_editable"
|
||||||
"test_check_invalid"
|
"test_check_invalid"
|
||||||
|
@ -23618,10 +23646,12 @@ database, file, dict stores. Cachy supports python versions 2.7+ and 3.2+.")
|
||||||
python-dulwich
|
python-dulwich
|
||||||
python-entrypoints
|
python-entrypoints
|
||||||
python-fastjsonschema
|
python-fastjsonschema
|
||||||
|
python-findpython
|
||||||
python-importlib-metadata
|
python-importlib-metadata
|
||||||
python-installer
|
python-installer
|
||||||
python-keyring
|
python-keyring
|
||||||
python-packaging
|
python-packaging
|
||||||
|
python-pbs-installer
|
||||||
python-pexpect
|
python-pexpect
|
||||||
python-pip
|
python-pip
|
||||||
python-pkginfo
|
python-pkginfo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue