diff --git a/pkgs/development/python-modules/certbot-dns-cloudflare/default.nix b/pkgs/development/python-modules/certbot-dns-cloudflare/default.nix index 1d0a48549c16..9833bed552d4 100644 --- a/pkgs/development/python-modules/certbot-dns-cloudflare/default.nix +++ b/pkgs/development/python-modules/certbot-dns-cloudflare/default.nix @@ -28,7 +28,8 @@ buildPythonPackage rec { "-o cache_dir=$(mktemp -d)" # Monitor https://github.com/certbot/certbot/issues/9606 for a solution - "-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'" + "-W" + "ignore::DeprecationWarning" ]; meta = certbot.meta // { diff --git a/pkgs/development/python-modules/certbot-dns-ovh/default.nix b/pkgs/development/python-modules/certbot-dns-ovh/default.nix index 4858b5827969..6e976eccb8ce 100644 --- a/pkgs/development/python-modules/certbot-dns-ovh/default.nix +++ b/pkgs/development/python-modules/certbot-dns-ovh/default.nix @@ -1,22 +1,25 @@ { - buildPythonPackage, acme, + buildPythonPackage, certbot, dns-lexicon, pytestCheckHook, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "certbot-dns-ovh"; - format = "setuptools"; + pyproject = true; inherit (certbot) src version; disabled = pythonOlder "3.6"; sourceRoot = "${src.name}/certbot-dns-ovh"; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ acme certbot dns-lexicon @@ -28,9 +31,8 @@ buildPythonPackage rec { "-o cache_dir=$(mktemp -d)" # Monitor https://github.com/certbot/certbot/issues/9606 for a solution - "-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'" - "-W 'ignore:Package lexicon.providers is deprecated and will be removed in Lexicon 4>=.:DeprecationWarning'" - "-W 'ignore:Legacy configuration object has been used to load the ConfigResolver.:DeprecationWarning'" + "-W" + "ignore::DeprecationWarning" ]; meta = certbot.meta // { diff --git a/pkgs/development/python-modules/certbot-dns-rfc2136/default.nix b/pkgs/development/python-modules/certbot-dns-rfc2136/default.nix index d4883bd2ad02..c0910bdf40f8 100644 --- a/pkgs/development/python-modules/certbot-dns-rfc2136/default.nix +++ b/pkgs/development/python-modules/certbot-dns-rfc2136/default.nix @@ -28,7 +28,8 @@ buildPythonPackage rec { "-o cache_dir=$(mktemp -d)" # Monitor https://github.com/certbot/certbot/issues/9606 for a solution - "-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'" + "-W" + "ignore::DeprecationWarning" ]; meta = certbot.meta // { diff --git a/pkgs/development/python-modules/certbot-dns-route53/default.nix b/pkgs/development/python-modules/certbot-dns-route53/default.nix index 798631b0c79e..01156dd0b799 100644 --- a/pkgs/development/python-modules/certbot-dns-route53/default.nix +++ b/pkgs/development/python-modules/certbot-dns-route53/default.nix @@ -5,16 +5,21 @@ certbot, pytestCheckHook, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "certbot-dns-route53"; - format = "setuptools"; + pyproject = true; inherit (certbot) src version; disabled = pythonOlder "3.6"; - propagatedBuildInputs = [ + sourceRoot = "${src.name}/certbot-dns-route53"; + + build-system = [ setuptools ]; + + dependencies = [ acme boto3 certbot @@ -26,11 +31,10 @@ buildPythonPackage rec { "-o cache_dir=$(mktemp -d)" # Monitor https://github.com/certbot/certbot/issues/9606 for a solution - "-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'" + "-W" + "ignore::DeprecationWarning" ]; - sourceRoot = "${src.name}/certbot-dns-route53"; - meta = certbot.meta // { description = "Route53 DNS Authenticator plugin for Certbot"; }; diff --git a/pkgs/development/python-modules/tldextract/default.nix b/pkgs/development/python-modules/tldextract/default.nix index a4044fc8a0ce..8859822716dd 100644 --- a/pkgs/development/python-modules/tldextract/default.nix +++ b/pkgs/development/python-modules/tldextract/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "tldextract"; - version = "5.1.2"; + version = "5.1.3"; pyproject = true; disabled = pythonOlder "3.8"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "john-kurkowski"; repo = "tldextract"; rev = "refs/tags/${version}"; - hash = "sha256-rieDDSCit9UcMpCMs2X3+cCS41Wbrp4WWVMzKj/jwEM="; + hash = "sha256-gcgQGZS/dsTTC4Szpjreb2fAsVZxxOCE1erVvU1q4xM="; }; nativeBuildInputs = [