aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/build-support/writers/test.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/build-support/writers/test.nix')
-rw-r--r--nixpkgs/pkgs/build-support/writers/test.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/build-support/writers/test.nix b/nixpkgs/pkgs/build-support/writers/test.nix
index 3cd0a080ae8..d284bda43d0 100644
--- a/nixpkgs/pkgs/build-support/writers/test.nix
+++ b/nixpkgs/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")
+ '';
};