depot/third_party/nixpkgs/pkgs/development/python-modules/linear-operator/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

54 lines
1,007 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, jaxtyping
, pytestCheckHook
, scipy
, setuptools
, setuptools-scm
, torch
, wheel
}:
buildPythonPackage rec {
pname = "linear-operator";
version = "0.5.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "cornellius-gp";
repo = "linear_operator";
rev = "refs/tags/v${version}";
hash = "sha256-OuE6jx9Q4IU+b2a+mrglRdBOReN1tt/thetNXxwk1GI=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
jaxtyping
scipy
torch
];
pythonImportsCheck = [ "linear_operator" ];
nativeCheckInputs = [
pytestCheckHook
];
disabledTests = [
# flaky numerical tests
"test_svd"
];
meta = with lib; {
description = "A LinearOperator implementation to wrap the numerical nuts and bolts of GPyTorch";
homepage = "https://github.com/cornellius-gp/linear_operator/";
license = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};
}