755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
jaxtyping,
|
|
pytestCheckHook,
|
|
pythonRelaxDepsHook,
|
|
scipy,
|
|
setuptools,
|
|
setuptools-scm,
|
|
torch,
|
|
typeguard,
|
|
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 = [
|
|
pythonRelaxDepsHook
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
jaxtyping
|
|
scipy
|
|
torch
|
|
typeguard
|
|
];
|
|
|
|
pythonRelaxDeps = [ "typeguard" ];
|
|
|
|
pythonImportsCheck = [ "linear_operator" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# flaky numerical tests
|
|
"test_matmul_matrix_broadcast"
|
|
"test_svd"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "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 ];
|
|
};
|
|
}
|