diff options
-rw-r--r-- | gn/packages/python.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 998b0aa..b76f0ca 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1620,6 +1620,15 @@ sorted order.") (base32 "160hcczkrnbqwqjx86vri5kvmvn17v01csll1c8w8ifx96r14azv")))) (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'bumpup-max-version + (lambda _ + (substitute* "ipfshttpclient/client/__init__.py" + (("VERSION_MAXIMUM = \"0.7.0\"") + "VERSION_MAXIMUM = \"0.7.1\"")) + #t))))) (native-inputs `(("python-pytest" ,python-pytest) ("python-pytest-runner" ,python-pytest-runner))) |