Unverified Commit 58fee7af authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

python313Packages.acme: update dependencies (#384426)

parents 0ca83b9d 16d2a43b
Loading
Loading
Loading
Loading
+11 −16
Original line number Diff line number Diff line
@@ -2,43 +2,38 @@
  buildPythonPackage,
  certbot,
  cryptography,
  pyasn1,
  pyopenssl,
  pyrfc3339,
  josepy,
  pytz,
  requests,
  requests-toolbelt,
  six,
  werkzeug,
  ndg-httpsclient,
  setuptools,
}:

buildPythonPackage rec {
  inherit (certbot) src version;

  pname = "acme";
  format = "setuptools";
  inherit (certbot) version src;
  pyproject = true;

  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";