libgumath, pythonPackages.gumath: unstable-2018-11-27 -> unstable-2019-08-01
this is the most recent commit to upstream's master at time of writing includes fixes of python package for darwin
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
{ buildPythonPackage
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, python
|
||||
, numba
|
||||
, ndtypes
|
||||
, xnd
|
||||
@@ -25,4 +27,20 @@ buildPythonPackage {
|
||||
--replace 'add_runtime_library_dirs = ["$ORIGIN"]' \
|
||||
'add_runtime_library_dirs = ["${libndtypes}/lib", "${libxnd}/lib", "${libgumath}/lib"]'
|
||||
'';
|
||||
|
||||
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
install_name_tool -add_rpath ${libgumath}/lib $out/${python.sitePackages}/gumath/_gumath.*.so
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
pushd python
|
||||
mv gumath _gumath
|
||||
# minor precision issues
|
||||
substituteInPlace test_gumath.py --replace 'test_sin' 'dont_test_sin'
|
||||
python test_gumath.py
|
||||
python test_xndarray.py
|
||||
popd
|
||||
'';
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user