From 6e2b11e6962c9381a322ab66176b810dd01e299f Mon Sep 17 00:00:00 2001 From: clerie Date: Mon, 21 Apr 2025 23:30:51 +0200 Subject: [PATCH] pkgs/uptimestatus: Use python instead of python3 --- pkgs/uptimestatus/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/uptimestatus/default.nix b/pkgs/uptimestatus/default.nix index 74a127a..8deb996 100644 --- a/pkgs/uptimestatus/default.nix +++ b/pkgs/uptimestatus/default.nix @@ -3,7 +3,7 @@ buildPythonPackage, flask, requests, - python3, + python, }: let @@ -25,9 +25,9 @@ in buildPythonPackage rec { ]; postInstall = '' - mkdir -p $out/${python3.sitePackages}/uptimestatus - cp -r uptimestatus/static $out/${python3.sitePackages}/uptimestatus/static - cp -r uptimestatus/templates $out/${python3.sitePackages}/uptimestatus/templates + mkdir -p $out/${python.sitePackages}/uptimestatus + cp -r uptimestatus/static $out/${python.sitePackages}/uptimestatus/static + cp -r uptimestatus/templates $out/${python.sitePackages}/uptimestatus/templates ''; doCheck = false;