summaryrefslogtreecommitdiff
path: root/pkgs/still-awake/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/still-awake/default.nix')
-rw-r--r--pkgs/still-awake/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/still-awake/default.nix b/pkgs/still-awake/default.nix
index 4bcd3ca..a383896 100644
--- a/pkgs/still-awake/default.nix
+++ b/pkgs/still-awake/default.nix
@@ -1,10 +1,10 @@
{
stdenv,
- pypy3,
+ python3,
lib,
}: let
# Needs python interpreter with tkinter support.
- python3' = pypy3;
+ python3' = python3.withPackages (ps: [ps.tkinter]);
in
stdenv.mkDerivation {
pname = "still-awake";