diff --git a/pkgs/development/python-modules/types-requests/default.nix b/pkgs/development/python-modules/types-requests/default.nix index 557dce437d2a..42e1bcb61d24 100644 --- a/pkgs/development/python-modules/types-requests/default.nix +++ b/pkgs/development/python-modules/types-requests/default.nix @@ -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 ];