Skip to content

Commit

Permalink
libgumath, pythonPackages.gumath: unstable-2018-11-27 -> unstable-201…
Browse files Browse the repository at this point in the history
…9-08-01

this is the most recent commit to upstream's master at time of writing

includes fixes of python package for darwin
  • Loading branch information
risicle authored and Jon committed Sep 20, 2020
1 parent dcd6847 commit eb86bff
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/libraries/libgumath/default.nix
Expand Up @@ -6,13 +6,13 @@

stdenv.mkDerivation {
pname = "libgumath";
version = "unstable-2018-11-27";
version = "unstable-2019-08-01";

src = fetchFromGitHub {
owner = "plures";
owner = "xnd-project";
repo = "gumath";
rev = "5a9d27883b40432246d6a93cd6133157267fd166";
sha256 = "0w2qzp7anxd1wzkvv5r2pdkkpgrnqzgrq47lrvpqc1i1wqzcwf0w";
rev = "360ed454105ac5615a7cb7d216ad25bc4181b876";
sha256 = "1wprkxpmjrk369fpw8rbq51r7jvqkcndqs209y7p560cnagmsxc6";
};

buildInputs = [ libndtypes libxnd ];
Expand Down
20 changes: 19 additions & 1 deletion pkgs/development/python-modules/gumath/default.nix
@@ -1,4 +1,6 @@
{ buildPythonPackage
{ stdenv
, buildPythonPackage
, python
, numba
, ndtypes
, xnd
Expand All @@ -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
'';

}

0 comments on commit eb86bff

Please sign in to comment.