python310Packages.urllib3: 1.26.7 -> 1.26.8

This commit is contained in:
Fabian Affolter 2022-01-10 00:32:12 +01:00
parent 23ba741aec
commit b5e392c3e7

View File

@ -18,11 +18,12 @@
buildPythonPackage rec {
pname = "urllib3";
version = "1.26.7";
version = "1.26.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-SYfGVVT3otvzDBj9SHeO8SSvb6t3GjdxA9oFheIzbs4=";
hash = "sha256-Dnwz2aY+fd/LhngKrIe+/C+930bFjbtIfghV987sKDw=";
};
propagatedBuildInputs = [
@ -61,7 +62,9 @@ buildPythonPackage rec {
export CI # Increases LONG_TIMEOUT
'';
pythonImportsCheck = [ "urllib3" ];
pythonImportsCheck = [
"urllib3"
];
meta = with lib; {
description = "Powerful, sanity-friendly HTTP client for Python";