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
buildPythonPackage,
3
certbot,
4
cryptography,
5
-
pyasn1,
6
pyopenssl,
7
pyrfc3339,
8
josepy,
9
pytz,
10
requests,
11
-
requests-toolbelt,
12
-
six,
13
-
werkzeug,
14
-
ndg-httpsclient,
15
}:
16
17
buildPythonPackage rec {
18
-
inherit (certbot) src version;
0
0
19
20
-
pname = "acme";
21
-
format = "setuptools";
0
0
0
22
23
-
propagatedBuildInputs = [
24
cryptography
25
-
pyasn1
26
pyopenssl
27
pyrfc3339
28
pytz
29
requests
30
-
requests-toolbelt
31
-
six
32
-
werkzeug
33
-
ndg-httpsclient
34
josepy
35
];
36
37
# does not contain any tests
38
doCheck = false;
39
-
pythonImportsCheck = [ "acme" ];
40
41
-
sourceRoot = "${src.name}/${pname}";
42
43
meta = certbot.meta // {
44
description = "ACME protocol implementation in Python";
···
2
buildPythonPackage,
3
certbot,
4
cryptography,
0
5
pyopenssl,
6
pyrfc3339,
7
josepy,
8
pytz,
9
requests,
10
+
setuptools,
0
0
0
11
}:
12
13
buildPythonPackage rec {
14
+
pname = "acme";
15
+
inherit (certbot) version src;
16
+
pyproject = true;
17
18
+
sourceRoot = "${src.name}/acme";
19
+
20
+
build-system = [
21
+
setuptools
22
+
];
23
24
+
dependencies = [
25
cryptography
0
26
pyopenssl
27
pyrfc3339
28
pytz
29
requests
0
0
0
0
30
josepy
31
];
32
33
# does not contain any tests
34
doCheck = false;
0
35
36
+
pythonImportsCheck = [ "acme" ];
37
38
meta = certbot.meta // {
39
description = "ACME protocol implementation in Python";