about summary refs log tree commit diff
path: root/pkgs/tools/networking/httpstat
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-26 09:19:22 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:06:09 +0200
commitfa9d5aa4aacd628d8f368ddfebcb6d105c7dc1b5 (patch)
treeb344d1904fd176306fc9d3e513088633cffbee68 /pkgs/tools/networking/httpstat
parent28647e4ff2115478dc7c7a2dfd82bd502bb865fb (diff)
httpstat: use python3
Diffstat (limited to 'pkgs/tools/networking/httpstat')
-rw-r--r--pkgs/tools/networking/httpstat/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/httpstat/default.nix b/pkgs/tools/networking/httpstat/default.nix
index 27c2a145a6592..be4a8f2a168d4 100644
--- a/pkgs/tools/networking/httpstat/default.nix
+++ b/pkgs/tools/networking/httpstat/default.nix
@@ -1,6 +1,6 @@
-{ lib, fetchFromGitHub, curl, pythonPackages, glibcLocales }:
+{ lib, fetchFromGitHub, curl, python3Packages, glibcLocales }:
 
-pythonPackages.buildPythonApplication rec {
+python3Packages.buildPythonApplication rec {
   pname = "httpstat";
   version = "1.3.1";
   src = fetchFromGitHub {