[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
45/97: gnu: python-numpy-bootstrap, python-numpy: Fix build.
From: |
Hartmut Goebel |
Subject: |
45/97: gnu: python-numpy-bootstrap, python-numpy: Fix build. |
Date: |
Tue, 18 Oct 2016 20:13:19 +0000 (UTC) |
htgoebel pushed a commit to branch wip-python-build-system
in repository guix.
commit 8e9ccd8ecadfd387bce2968c2df7dd8b8be12b51
Author: Hartmut Goebel <address@hidden>
Date: Thu Oct 13 14:34:13 2016 +0200
gnu: python-numpy-bootstrap, python-numpy: Fix build.
* gnu/packages/python.scm (python-numpy-bootstrap): Correct inputs, use
modify-phases, add dummy newlines character to string to make emacs happy,
set PYTHONPATH prior to running tests. (python-numpy): propagate inputs,
set
PYTHONPATH prior to building docs.
---
gnu/packages/python.scm | 45 ++++++++++++++++++++++++---------------------
1 file changed, 24 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 5e73d20..d070546 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2973,18 +2973,17 @@ writing C extensions for Python as easy as Python
itself.")
(base32
"1bjjhvncraka5s6i4lg644jrxij6bvycxy7an20gcz3a0m11iygp"))))
(build-system python-build-system)
- (native-inputs
- `(("python-nose" ,python-nose)))
(inputs
`(("openblas" ,openblas)
("lapack" ,lapack)))
(native-inputs
- `(("gfortran" ,gfortran)))
+ `(("python-nose" ,python-nose)
+ ("gfortran" ,gfortran)))
(arguments
`(#:phases
- (alist-cons-before
- 'build 'set-environment-variables
- (lambda* (#:key inputs #:allow-other-keys)
+ (modify-phases %standard-phases
+ (add-before 'build 'set-environment-variables
+ (lambda* (#:key inputs #:allow-other-keys)
(call-with-output-file "site.cfg"
(lambda (port)
(format port
@@ -2993,7 +2992,8 @@ libraries = openblas
library_dirs = ~a/lib
include_dirs = ~a/include
-[lapack]
+# backslash-n to make emacs happy
+\n[lapack]
lapack_libs = lapack
library_dirs = ~a/lib
include_dirs = ~a/include
@@ -3006,18 +3006,17 @@ include_dirs = ~a/include
(substitute* "numpy/distutils/system_info.py"
(("c = distutils\\.ccompiler\\.new_compiler\\(\\)")
"c = distutils.ccompiler.new_compiler();
c.set_executables(compiler='gcc',compiler_so='gcc',linker_exe='gcc',linker_so='gcc
-shared')"))
- #t)
+ #t))
;; Tests can only be run after the library has been installed and not
;; within the source directory.
- (alist-cons-after
- 'install 'check
- (lambda _
+ (delete 'check)
+ (add-after 'install 'check
+ (lambda* (#:key outputs inputs #:allow-other-keys)
+ ;; Make installed package available for running the tests
+ (add-installed-pythonpath outputs inputs)
(with-directory-excursion "/tmp"
(zero? (system* "python" "-c"
- "import numpy; numpy.test(verbose=2)"))))
- (alist-delete
- 'check
- %standard-phases)))))
+ "import numpy; numpy.test(verbose=2)"))))))))
(home-page "http://www.numpy.org/")
(synopsis "Fundamental package for scientific computing with Python")
(description "NumPy is the fundamental package for scientific computing
@@ -3050,10 +3049,10 @@ capabilities.")
("python2-matplotlib" ,python2-matplotlib)
("python2-pandas" ,python2-pandas)
("python2-scikit-learn" ,python2-scikit-learn)
- ("python2-cython" ,python2-cython)
("python2-pysnptools" ,python2-pysnptools)))
(native-inputs
`(("unzip" ,unzip)
+ ("python2-cython" ,python2-cython)
("python2-mock" ,python2-mock)))
(home-page
"http://research.microsoft.com/en-us/um/redmond/projects/mscompbio/fastlmm/")
(synopsis "Perform genome-wide association studies on large data sets")
@@ -3068,14 +3067,15 @@ association studies (GWAS) on extremely large data
sets.")
(name "python-numpy")
(outputs '("out" "doc"))
(inputs
- `(("which" ,which)
- ("python-matplotlib" ,python-matplotlib)
- ("python-sphinx" ,python-sphinx)
+ `(("which" ,which)))
+ (propagated-inputs
+ `(("python-matplotlib" ,python-matplotlib)
("python-pyparsing" ,python-pyparsing)
- ("python-numpydoc" ,python-numpydoc)
,@(package-inputs python-numpy-bootstrap)))
(native-inputs
`(("pkg-config" ,pkg-config)
+ ("python-sphinx" ,python-sphinx)
+ ("python-numpydoc" ,python-numpydoc)
("texlive" ,texlive)
("texinfo" ,texinfo)
("perl" ,perl)
@@ -3086,7 +3086,10 @@ association studies (GWAS) on extremely large data
sets.")
((#:phases phases)
`(alist-cons-after
'install 'install-doc
- (lambda* (#:key outputs #:allow-other-keys)
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ ;; Make installed package available for building the
+ ;; documentation
+ (add-installed-pythonpath outputs inputs)
(let* ((data (string-append (assoc-ref outputs "doc")
"/share"))
(doc (string-append
data "/doc/" ,name "-"
- 49/97: gnu: vdirsyncer: Fix build by setting correct PYTHONPATH., (continued)
- 49/97: gnu: vdirsyncer: Fix build by setting correct PYTHONPATH., Hartmut Goebel, 2016/10/18
- 27/97: some inputs -> propagated-inputs, Hartmut Goebel, 2016/10/18
- 52/97: gnu: python-pandas: Fix build., Hartmut Goebel, 2016/10/18
- 56/97: gnu: python-setuptools: remove pre-built binaries from source., Hartmut Goebel, 2016/10/18
- 53/97: gnu: python-scripttest: Correct inputs., Hartmut Goebel, 2016/10/18
- 38/97: gnu: python-singledispatch: correct inputs., Hartmut Goebel, 2016/10/18
- 42/97: gnu: python-zope-testing: Remove needless input., Hartmut Goebel, 2016/10/18
- 44/97: gnu: python-fonttools: Remove intervening directory in site-packges., Hartmut Goebel, 2016/10/18
- 43/97: gnu: python2-pysnptools: Correct inputs., Hartmut Goebel, 2016/10/18
- 50/97: gnu: thefuck: Fix build., Hartmut Goebel, 2016/10/18
- 45/97: gnu: python-numpy-bootstrap, python-numpy: Fix build.,
Hartmut Goebel <=
- 54/97: gnu: python-subunit, python-testrepository: Fix inputs, Hartmut Goebel, 2016/10/18
- 58/97: gnu: pytest-mock: remove needless propagated input "python-py"., Hartmut Goebel, 2016/10/18
- 67/97: python-blinker: No longer disable tests., Hartmut Goebel, 2016/10/18
- 65/97: gnu: python-joblib: Add comment., Hartmut Goebel, 2016/10/18
- 69/97: gnu: python2-scikit-image: Remove needless propagated-input., Hartmut Goebel, 2016/10/18
- 73/97: gnu: Add python-rst.linker, python2-rst.linker., Hartmut Goebel, 2016/10/18
- 77/97: python-zope-location: Correct inputs., Hartmut Goebel, 2016/10/18
- 75/97: Add TODO comments., Hartmut Goebel, 2016/10/18
- 76/97: zope.interface: Correct inputs., Hartmut Goebel, 2016/10/18
- 79/97: zope.security: Correct inputs., Hartmut Goebel, 2016/10/18