tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.acme: update dependencies
Robert Schütz
11 months ago
16d2a43b
25fb2896
+11
-16
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
acme
default.nix
+11
-16
pkgs/development/python-modules/acme/default.nix
···
2
2
buildPythonPackage,
3
3
certbot,
4
4
cryptography,
5
5
-
pyasn1,
6
5
pyopenssl,
7
6
pyrfc3339,
8
7
josepy,
9
8
pytz,
10
9
requests,
11
11
-
requests-toolbelt,
12
12
-
six,
13
13
-
werkzeug,
14
14
-
ndg-httpsclient,
10
10
+
setuptools,
15
11
}:
16
12
17
13
buildPythonPackage rec {
18
18
-
inherit (certbot) src version;
14
14
+
pname = "acme";
15
15
+
inherit (certbot) version src;
16
16
+
pyproject = true;
19
17
20
20
-
pname = "acme";
21
21
-
format = "setuptools";
18
18
+
sourceRoot = "${src.name}/acme";
19
19
+
20
20
+
build-system = [
21
21
+
setuptools
22
22
+
];
22
23
23
23
-
propagatedBuildInputs = [
24
24
+
dependencies = [
24
25
cryptography
25
25
-
pyasn1
26
26
pyopenssl
27
27
pyrfc3339
28
28
pytz
29
29
requests
30
30
-
requests-toolbelt
31
31
-
six
32
32
-
werkzeug
33
33
-
ndg-httpsclient
34
30
josepy
35
31
];
36
32
37
33
# does not contain any tests
38
34
doCheck = false;
39
39
-
pythonImportsCheck = [ "acme" ];
40
35
41
41
-
sourceRoot = "${src.name}/${pname}";
36
36
+
pythonImportsCheck = [ "acme" ];
42
37
43
38
meta = certbot.meta // {
44
39
description = "ACME protocol implementation in Python";