gnu: python-duniterpy: Relax requirements.

* gnu/packages/finance.scm (python-duniterpy)[arguments]<#:phases>:
Add phase 'relax-requirements.

Change-Id: I0fa9514267270396eecd8b11bf05bbfdf4db5fcd
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2026-01-18 22:34:00 +01:00 committed by Sharlatan Hellseher
parent 33cc3b50a4
commit f256ad39d7
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1610,6 +1610,15 @@ money transfer.")
(sha256
(base32 "1ysh9b5lzg053hv4iw3zbn7hid05qssiwmrl8sir8qlk958r8x60"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'relax-requirements
(lambda _
(substitute* "pyproject.toml"
(("mnemonic =.*")
"mnemonic = '*'")))))))
(native-inputs
(list python-poetry-core
python-pytest))