diff options
author | BonfaceKilz | 2021-03-08 23:23:34 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-03-08 23:23:34 +0300 |
commit | 1f72c16d946cec6095876e733f22dac69ecce3f3 (patch) | |
tree | 2ae356df5ce607a8c33138535e364dfb20a296df /gn/packages | |
parent | 566df97115752e114258da8bf8c504d8f4f140d2 (diff) | |
download | guix-bioinformatics-1f72c16d946cec6095876e733f22dac69ecce3f3.tar.gz |
gn: python-ipfshttpclient: Make VERSON_MAXIMUM check 0.7.1
Diffstat (limited to 'gn/packages')
-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))) |