python3Packages.urllib3: 1.26.16 -> 2.0.4

This commit is contained in:
Martin Weinelt
2023-09-27 15:34:36 +02:00
parent b59720c85d
commit 6beb683e97
@@ -5,6 +5,7 @@
, certifi
, cryptography
, fetchPypi
, hatchling
, idna
, isPyPy
, mock
@@ -20,14 +21,18 @@
buildPythonPackage rec {
pname = "urllib3";
version = "1.26.16";
format = "setuptools";
version = "2.0.4";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-jxNfZQJ1a95rKpsomJ31++h8mXDOyqaQQe3M5/BYmxQ=";
hash = "sha256-jSL4aq6O9eQQ1PU5/enOayEToAG7TRieCu1wZC1gKxE=";
};
nativeBuildInputs = [
hatchling
];
# FIXME: remove backwards compatbility hack
propagatedBuildInputs = passthru.optional-dependencies.brotli
++ passthru.optional-dependencies.socks;