mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: python-setuptools-for-tensorflow: Fix build.
* gnu/packages/python-xyz.scm (python-setuptools-for-tensorflow)[arguments]: Add phase 'compatibility-fixes; disable tests. [native-inputs]: Add python-pytest, python-mock, and python-six.
This commit is contained in:
parent
ef509e931f
commit
728f1568d8
1 changed files with 16 additions and 2 deletions
|
@ -1810,7 +1810,7 @@ Python 3 support.")
|
||||||
@code{setup.cfg}.")
|
@code{setup.cfg}.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
;; The setuptools provided by Python 3.7.4 is too new for Tensorflow.
|
;; The setuptools provided by Python 3.9 is too new for Tensorflow.
|
||||||
(define-public python-setuptools-for-tensorflow
|
(define-public python-setuptools-for-tensorflow
|
||||||
(hidden-package
|
(hidden-package
|
||||||
(package
|
(package
|
||||||
|
@ -1821,7 +1821,21 @@ Python 3 support.")
|
||||||
(uri (pypi-uri "setuptools" version ".zip"))
|
(uri (pypi-uri "setuptools" version ".zip"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mzdhvfhnv4lggxa8rjl0dzqxvfx377gg5sqs57v89wrp09lwj65")))))))
|
"1mzdhvfhnv4lggxa8rjl0dzqxvfx377gg5sqs57v89wrp09lwj65"))))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; tests require vendored resources
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'compatibility-fixes
|
||||||
|
(lambda _
|
||||||
|
;; Python 3.9 no longer has HTMLParser
|
||||||
|
(substitute* "setuptools/py33compat.py"
|
||||||
|
(("html_parser.HTMLParser\\(\\).unescape")
|
||||||
|
"html.unescape"))
|
||||||
|
;; This needs distutils.msvc9compiler
|
||||||
|
(delete-file "setuptools/tests/test_msvc.py"))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest python-mock python-six)))))
|
||||||
|
|
||||||
(define-public python-uniseg
|
(define-public python-uniseg
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue