python312Packages.gpy: 1.13.1 -> 1.13.2 (#341238)

This commit is contained in:
Sarah Clark
2024-09-17 20:14:46 -07:00
committed by GitHub
parent 7b7f29d795
commit 78bf4dea0f

View File

@@ -16,19 +16,23 @@
buildPythonPackage rec {
pname = "gpy";
version = "1.13.1";
version = "1.13.2";
pyproject = true;
disabled = pythonOlder "3.9";
# 1.13.0 not on PyPI yet
src = fetchFromGitHub {
owner = "SheffieldML";
repo = "GPy";
rev = "refs/tags/v${version}";
hash = "sha256-ykoGdXy1uagKrP9Nqn74mDESZwKVPq6wQgnHlCznevM=";
hash = "sha256-kggXePDKJcgw8qwLIBTxbwhiLw2H4dkx7082FguKP0Y=";
};
pythonRelaxDeps = [
"paramz"
"scipy"
];
nativeBuildInputs = [ setuptools ];
buildInputs = [ cython ];
propagatedBuildInputs = [
@@ -47,14 +51,18 @@ buildPythonPackage rec {
done
'';
disabledTests = lib.optionals (stdenv.isDarwin && stdenv.hostPlatform.isx86_64) [
# Rounding difference break comparison
"TestGradientMultiOutputGPModel"
];
pythonImportsCheck = [ "GPy" ];
meta = with lib; {
description = "Gaussian process framework in Python";
homepage = "https://sheffieldml.github.io/GPy";
changelog = "https://github.com/SheffieldML/GPy/releases/tag/v.${version}";
changelog = "https://github.com/SheffieldML/GPy/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
broken = stdenv.isDarwin; # See inscrutable error message here: https://github.com/NixOS/nixpkgs/pull/107653#issuecomment-751527547
};
}