about summary refs log tree commit diff
path: root/pkgs/development/python-modules/linear-operator/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/linear-operator/default.nix')
-rw-r--r--pkgs/development/python-modules/linear-operator/default.nix35
1 files changed, 15 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/linear-operator/default.nix b/pkgs/development/python-modules/linear-operator/default.nix
index 8ebe174d199be..ab402c37aa79b 100644
--- a/pkgs/development/python-modules/linear-operator/default.nix
+++ b/pkgs/development/python-modules/linear-operator/default.nix
@@ -1,15 +1,15 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, jaxtyping
-, pytestCheckHook
-, pythonRelaxDepsHook
-, scipy
-, setuptools
-, setuptools-scm
-, torch
-, typeguard
-, wheel
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  jaxtyping,
+  pytestCheckHook,
+  scipy,
+  setuptools,
+  setuptools-scm,
+  torch,
+  typeguard,
+  wheel,
 }:
 
 buildPythonPackage rec {
@@ -25,7 +25,6 @@ buildPythonPackage rec {
   };
 
   nativeBuildInputs = [
-    pythonRelaxDepsHook
     setuptools
     setuptools-scm
     wheel
@@ -38,15 +37,11 @@ buildPythonPackage rec {
     typeguard
   ];
 
-  pythonRelaxDeps = [
-    "typeguard"
-  ];
+  pythonRelaxDeps = [ "typeguard" ];
 
   pythonImportsCheck = [ "linear_operator" ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   disabledTests = [
     # flaky numerical tests
@@ -55,7 +50,7 @@ buildPythonPackage rec {
   ];
 
   meta = with lib; {
-    description = "A LinearOperator implementation to wrap the numerical nuts and bolts of GPyTorch";
+    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 ];