Merge pull request #250586 from fabaff/cert-chain-resolver-bump

python311Packages.cert-chain-resolver: 1.0.1 -> 1.1.0

authored by Fabian Affolter and committed by GitHub b4d9265f a06207bb

+4 -3
+4 -3
pkgs/development/python-modules/cert-chain-resolver/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "cert-chain-resolver"; 13 - version = "1.0.1"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchFromGitHub { 19 owner = "rkoopmans"; 20 repo = "python-certificate-chain-resolver"; 21 - rev = version; 22 - hash = "sha256-NLTRx6J6pjs7lyschHN5KtgrnpQpEyvZ2zz0pSd5sc4="; 23 }; 24 25 propagatedBuildInputs = [ ··· 45 meta = with lib; { 46 description = "Resolve / obtain the certificate intermediates of a x509 certificate"; 47 homepage = "https://github.com/rkoopmans/python-certificate-chain-resolver"; 48 license = licenses.mit; 49 maintainers = with maintainers; [ veehaitch ]; 50 };
··· 10 11 buildPythonPackage rec { 12 pname = "cert-chain-resolver"; 13 + version = "1.1.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchFromGitHub { 19 owner = "rkoopmans"; 20 repo = "python-certificate-chain-resolver"; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-2itpu/Ap5GNnqAiw3Cp+8rndreWlwfPd+WwM99G7U2E="; 23 }; 24 25 propagatedBuildInputs = [ ··· 45 meta = with lib; { 46 description = "Resolve / obtain the certificate intermediates of a x509 certificate"; 47 homepage = "https://github.com/rkoopmans/python-certificate-chain-resolver"; 48 + changelog = "https://github.com/rkoopmans/python-certificate-chain-resolver/blob/${version}/CHANGELOG.md"; 49 license = licenses.mit; 50 maintainers = with maintainers; [ veehaitch ]; 51 };