python3Packages.types-requests: 2.25.12 -> 2.26.0

This commit is contained in:
Fabian Affolter 2021-11-10 12:35:20 +01:00
parent 1b36833f2c
commit 8d016c63d7

View file

@ -5,17 +5,20 @@
buildPythonPackage rec {
pname = "types-requests";
version = "2.25.12";
version = "2.26.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BVhjwKrPj48pzSyg0zIO/fOfKOcd5o0yd2F1HS9iu1c=";
sha256 = "sha256-317Iw0tBOkLrs45Plr3raAkLh1vfzFE43IKYnJVEWIM=";
};
# Modules doesn't have tests
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "requests-stubs" ];
pythonImportsCheck = [
"requests-stubs"
];
meta = with lib; {
description = "Typing stubs for requests";