Merge pull request #107653 from rmcgibbo/gpy

This commit is contained in:
Sandro 2020-12-28 02:38:07 +01:00 committed by GitHub
commit c0a21cbede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 10 deletions

View file

@ -1,5 +1,14 @@
{ stdenv, buildPythonPackage, fetchPypi
, numpy, scipy, six, paramz, nose, matplotlib, cython }:
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, scipy
, six
, paramz
, matplotlib
, cython
, nose
}:
buildPythonPackage rec {
pname = "GPy";
@ -10,21 +19,35 @@ buildPythonPackage rec {
sha256 = "04faf0c24eacc4dea60727c50a48a07ddf9b5751a3b73c382105e2a31657c7ed";
};
# running tests produces "ImportError: cannot import name 'linalg_cython'"
# even though Cython has run
checkPhase = "nosetests -d";
doCheck = false;
buildInputs = [ cython ];
propagatedBuildInputs = [ numpy scipy six paramz matplotlib ];
checkInputs = [ nose ];
buildInputs = [ cython ];
# $ nosetests GPy/testing/*.py
# => Ran 483 tests in 112.146s (on 8 cores)
# So instead, run shorter set of tests
checkPhase = ''
nosetests GPy/testing/linalg_test.py
'';
propagatedBuildInputs = [ numpy scipy six paramz matplotlib ];
# Rebuild cython-generated .c files since the included
# ones were built with an older version of cython that is
# incompatible with python3.9
preBuild = ''
for fn in $(find . -name '*.pyx'); do
echo $fn | sed 's/\.\.pyx$/\.c/' | xargs ${cython}/bin/cython -3
done
'';
pythonImportsCheck = [
"GPy"
];
meta = with stdenv.lib; {
description = "Gaussian process framework in Python";
homepage = "https://sheffieldml.github.io/GPy";
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
broken = stdenv.isDarwin; # See inscrutable error message here: https://github.com/NixOS/nixpkgs/pull/107653#issuecomment-751527547
};
}

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator, nose }:
buildPythonPackage rec {
pname = "paramz";
@ -10,6 +10,12 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ numpy scipy six decorator ];
checkInputs = [ nose ];
# Ran 113 tests in 3.082s
checkPhase = ''
nosetests -v paramz/tests
'';
meta = with stdenv.lib; {
description = "Parameterization framework for parameterized model creation and handling";