Merge pull request #279553 from fabaff/types-requests-bump

python311Packages.types-requests: 2.31.0.10 -> 2.31.0.20240106
This commit is contained in:
Robert Scott 2024-01-08 22:23:22 +00:00 committed by GitHub
commit 4770e67ec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, types-urllib3
}:
buildPythonPackage rec {
pname = "types-requests";
version = "2.31.0.10";
format = "setuptools";
version = "2.31.0.20240106";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-3FhSp28er2Dq+oGi5Qrvo9HwFcNM8MuhMJMIZrGyKpI=";
hash = "sha256-DhxzHBfzNhjsWOAithShouzCX33IaACzbvNBOAQCxhI=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
types-urllib3
];