nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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.

+7 -2
+7 -2
pkgs/development/python-modules/certbot/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "certbot"; 26 - version = "4.0.0"; 26 + version = "4.1.1"; 27 27 pyproject = true; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "certbot"; 31 31 repo = "certbot"; 32 32 tag = "v${version}"; 33 - hash = "sha256-GS4JLLXrX4+BQ4S6ySbOHUaUthCFYTCHWnOaMpfnIj8="; 33 + hash = "sha256-nlNjBbXd4ujzVx10+UwqbXliuLVVf+UHR8Dl5CQzsZo="; 34 34 }; 35 35 36 36 postPatch = "cd certbot"; # using sourceRoot would interfere with patches ··· 64 64 pytestFlags = [ 65 65 "-pno:cacheprovider" 66 66 "-Wignore::DeprecationWarning" 67 + ]; 68 + 69 + disabledTests = [ 70 + # network access 71 + "test_lock_order" 67 72 ]; 68 73 69 74 makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];