13 buildPythonPackage rec {
18 src = fetchFromGitHub {
19 owner = "cornellius-gp";
22 hash = "sha256-cpkfjx5G/4duL1Rr4nkHTHi03TDcYbcx3bKP2Ny7Ijo=";
25 env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
33 propagatedBuildInputs = [
43 pythonImportsCheck = [ "gpytorch" ];
46 # AssertionError on number of warnings emitted
47 "test_deprecated_methods"
48 # flaky numerical tests
49 "test_classification_error"
50 "test_matmul_matrix_broadcast"
51 # https://github.com/cornellius-gp/gpytorch/issues/2396
52 "test_t_matmul_matrix"
56 description = "A highly efficient and modular implementation of Gaussian Processes, with GPU acceleration";
57 homepage = "https://gpytorch.ai";
58 license = licenses.mit;
59 maintainers = with maintainers; [ veprbl ];