about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorTom Hubrecht <tom@hubrecht.ovh>2024-05-06 14:13:20 +0200
committerTom Hubrecht <tom@hubrecht.ovh>2024-05-06 19:51:19 +0200
commitde1618552c9956bf2c5915d94c584a017e3c4a3d (patch)
tree68af624a2131cb916ee8b937831c5361f511e9bd /pkgs/applications/science
parent48833103ac1d5d8fff697201d7d48751bbbf7151 (diff)
sage: Add as passthru.tests to critical dependencies
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/lrcalc/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/lrcalc/default.nix b/pkgs/applications/science/math/lrcalc/default.nix
index 90ee50c682800..0d968e0161796 100644
--- a/pkgs/applications/science/math/lrcalc/default.nix
+++ b/pkgs/applications/science/math/lrcalc/default.nix
@@ -1,6 +1,9 @@
 { lib, stdenv
 , fetchFromBitbucket
 , autoreconfHook
+
+# Reverse dependency
+, sage
 }:
 
 stdenv.mkDerivation rec {
@@ -20,6 +23,8 @@ stdenv.mkDerivation rec {
     autoreconfHook
   ];
 
+  passthru.tests = { inherit sage; };
+
   meta = with lib; {
     description = "Littlewood-Richardson calculator";
     homepage = "http://math.rutgers.edu/~asbuch/lrcalc/";