Skip to content

Commit 14a0219

Browse files
committed
python312Packages.certbot-dns-route53: refactor
1 parent 4992f62 commit 14a0219

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • pkgs/development/python-modules/certbot-dns-route53

pkgs/development/python-modules/certbot-dns-route53/default.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,21 @@
55
certbot,
66
pytestCheckHook,
77
pythonOlder,
8+
setuptools,
89
}:
910

1011
buildPythonPackage rec {
1112
pname = "certbot-dns-route53";
12-
format = "setuptools";
13+
pyproject = true;
1314

1415
inherit (certbot) src version;
1516
disabled = pythonOlder "3.6";
1617

1718
sourceRoot = "${src.name}/certbot-dns-route53";
1819

19-
propagatedBuildInputs = [
20+
build-system = [ setuptools ];
21+
22+
dependencies = [
2023
acme
2124
boto3
2225
certbot

0 commit comments

Comments
 (0)