python3Packages.certbot: 4.0.0 -> 4.1.1

https://github.com/certbot/certbot/blob/v4.1.1/certbot/CHANGELOG.md

This commit was automatically generated using update-python-libraries.

Changed files
+7 -2
pkgs
development
python-modules
certbot
+7 -2
pkgs/development/python-modules/certbot/default.nix
···
buildPythonPackage rec {
pname = "certbot";
-
version = "4.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "certbot";
repo = "certbot";
tag = "v${version}";
-
hash = "sha256-GS4JLLXrX4+BQ4S6ySbOHUaUthCFYTCHWnOaMpfnIj8=";
};
postPatch = "cd certbot"; # using sourceRoot would interfere with patches
···
pytestFlags = [
"-pno:cacheprovider"
"-Wignore::DeprecationWarning"
];
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];
···
buildPythonPackage rec {
pname = "certbot";
+
version = "4.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "certbot";
repo = "certbot";
tag = "v${version}";
+
hash = "sha256-nlNjBbXd4ujzVx10+UwqbXliuLVVf+UHR8Dl5CQzsZo=";
};
postPatch = "cd certbot"; # using sourceRoot would interfere with patches
···
pytestFlags = [
"-pno:cacheprovider"
"-Wignore::DeprecationWarning"
+
];
+
+
disabledTests = [
+
# network access
+
"test_lock_order"
];
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];