We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4992f62 commit 14a0219Copy full SHA for 14a0219
1 file changed
pkgs/development/python-modules/certbot-dns-route53/default.nix
@@ -5,18 +5,21 @@
5
certbot,
6
pytestCheckHook,
7
pythonOlder,
8
+ setuptools,
9
}:
10
11
buildPythonPackage rec {
12
pname = "certbot-dns-route53";
- format = "setuptools";
13
+ pyproject = true;
14
15
inherit (certbot) src version;
16
disabled = pythonOlder "3.6";
17
18
sourceRoot = "${src.name}/certbot-dns-route53";
19
- propagatedBuildInputs = [
20
+ build-system = [ setuptools ];
21
+
22
+ dependencies = [
23
acme
24
boto3
25
certbot
0 commit comments