Skip to content

Commit

Permalink
python312Packages.gpy: 1.13.1 -> 1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahec committed Sep 11, 2024
1 parent 291575d commit d534494
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions pkgs/development/python-modules/gpy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -47,14 +51,18 @@ buildPythonPackage rec {
done
'';

disabledTests = lib.optional (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
};
}

0 comments on commit d534494

Please sign in to comment.