From 14a02190a3a6bf51016f928adc9ec6d98ab56c53 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 21 Nov 2024 10:57:15 +0100 Subject: [PATCH] python312Packages.certbot-dns-route53: refactor --- .../python-modules/certbot-dns-route53/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/certbot-dns-route53/default.nix b/pkgs/development/python-modules/certbot-dns-route53/default.nix index 3d6a28bed781..01156dd0b799 100644 --- a/pkgs/development/python-modules/certbot-dns-route53/default.nix +++ b/pkgs/development/python-modules/certbot-dns-route53/default.nix @@ -5,18 +5,21 @@ certbot, pytestCheckHook, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "certbot-dns-route53"; - format = "setuptools"; + pyproject = true; inherit (certbot) src version; disabled = pythonOlder "3.6"; sourceRoot = "${src.name}/certbot-dns-route53"; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ acme boto3 certbot