summary refs log tree commit diff
path: root/pkgs/build-support/writers/test.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/writers/test.nix')
-rw-r--r--pkgs/build-support/writers/test.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/build-support/writers/test.nix b/pkgs/build-support/writers/test.nix
index 3cd0a080ae8..d284bda43d0 100644
--- a/pkgs/build-support/writers/test.nix
+++ b/pkgs/build-support/writers/test.nix
@@ -152,6 +152,14 @@ let
       """)
       print(y[0]['test'])
     '';
+
+    python2NoLibs = writePython2 "test_python2_no_libs" {} ''
+      print("success")
+    '';
+
+    python3NoLibs = writePython3 "test_python3_no_libs" {} ''
+      print("success")
+    '';
   };