From 04f6965d72656c9b23804d01d02672d4c93ad6a1 Mon Sep 17 00:00:00 2001 From: Guy Chronister Date: Thu, 5 Feb 2026 11:06:04 -0600 Subject: [PATCH] altdns: update python3 references to python3Packages in altdns package --- pkgs/by-name/al/altdns/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/al/altdns/package.nix b/pkgs/by-name/al/altdns/package.nix index 6d59460590cc..9958f67745d7 100644 --- a/pkgs/by-name/al/altdns/package.nix +++ b/pkgs/by-name/al/altdns/package.nix @@ -1,10 +1,10 @@ { lib, - python3, + python3Packages, fetchFromGitHub, }: -python3.pkgs.buildPythonApplication { +python3Packages.buildPythonApplication { pname = "altdns"; version = "1.0.2-unstable-2021-09-09"; pyproject = true; @@ -18,11 +18,11 @@ python3.pkgs.buildPythonApplication { pythonRemoveDeps = [ "argparse" ]; - build-system = with python3.pkgs; [ + build-system = with python3Packages; [ setuptools ]; - dependencies = with python3.pkgs; [ + dependencies = with python3Packages; [ dnspython termcolor tldextract