python313Packages.acme: update dependencies

Changed files
+11 -16
pkgs
development
python-modules
+11 -16
pkgs/development/python-modules/acme/default.nix
···
buildPythonPackage,
certbot,
cryptography,
-
pyasn1,
pyopenssl,
pyrfc3339,
josepy,
pytz,
requests,
-
requests-toolbelt,
-
six,
-
werkzeug,
-
ndg-httpsclient,
+
setuptools,
}:
buildPythonPackage rec {
-
inherit (certbot) src version;
+
pname = "acme";
+
inherit (certbot) version src;
+
pyproject = true;
-
pname = "acme";
-
format = "setuptools";
+
sourceRoot = "${src.name}/acme";
+
+
build-system = [
+
setuptools
+
];
-
propagatedBuildInputs = [
+
dependencies = [
cryptography
-
pyasn1
pyopenssl
pyrfc3339
pytz
requests
-
requests-toolbelt
-
six
-
werkzeug
-
ndg-httpsclient
josepy
];
# does not contain any tests
doCheck = false;
-
pythonImportsCheck = [ "acme" ];
-
sourceRoot = "${src.name}/${pname}";
+
pythonImportsCheck = [ "acme" ];
meta = certbot.meta // {
description = "ACME protocol implementation in Python";