about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jinja2/default.nix
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/development/python-modules/jinja2/default.nix
parent48833103ac1d5d8fff697201d7d48751bbbf7151 (diff)
sage: Add as passthru.tests to critical dependencies
Diffstat (limited to 'pkgs/development/python-modules/jinja2/default.nix')
-rw-r--r--pkgs/development/python-modules/jinja2/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jinja2/default.nix b/pkgs/development/python-modules/jinja2/default.nix
index 1c260e37c7b0b..80b87378a6e4d 100644
--- a/pkgs/development/python-modules/jinja2/default.nix
+++ b/pkgs/development/python-modules/jinja2/default.nix
@@ -12,6 +12,9 @@
 , setuptools
 , sphinxcontrib-log-cabinet
 , sphinx-issues
+
+# Reverse dependency
+, sage
 }:
 
 buildPythonPackage rec {
@@ -76,6 +79,8 @@ buildPythonPackage rec {
     inherit meta;
   };
 
+  passthru.tests = { inherit sage; };
+
   meta = with lib; {
     changelog = "https://github.com/pallets/jinja/blob/${version}/CHANGES.rst";
     description = "Very fast and expressive template engine";