diff options
author | lassulus <lassulus@lassul.us> | 2022-12-12 15:36:00 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-12-12 15:39:48 +0100 |
commit | 0dfe1e1d870168c5b8f46c26f5fdb8b55de61930 (patch) | |
tree | f6a63057f4e0619863429ac2cd455a0716a78839 /examples/hello_world.nix | |
parent | f65c77bdcc58be2081a0ffbda849289c5191b5e8 (diff) |
remove python2
Diffstat (limited to 'examples/hello_world.nix')
-rw-r--r-- | examples/hello_world.nix | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/hello_world.nix b/examples/hello_world.nix index 4f9330a..f71804f 100644 --- a/examples/hello_world.nix +++ b/examples/hello_world.nix @@ -24,9 +24,6 @@ in { perl = pkgs.writePerl "hello-world" {} '' print "hello world\n"; ''; - python2 = pkgs.writePython2 "hello-world" {} '' - print "hello world" - ''; python3 = pkgs.writePython3 "hello-world" {} '' print("hello world") ''; |