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

python3Packages.types-requests: 2.27.2 -> 2.27.5
This commit is contained in:
Fabian Affolter 2022-01-11 15:22:05 +01:00 committed by GitHub
commit dea335ea03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 2 deletions

View file

@ -1,18 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, types-urllib3
}:
buildPythonPackage rec {
pname = "types-requests";
version = "2.27.2";
version = "2.27.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "c902c5433ad103053011c6ac036317ac6f6a8e8a6926fc470a8d2ef791236da7";
sha256 = "sha256-pn3BqFEjErjLifO6lfmg5p7zQ2rnfJvU8yjNiPF63aI=";
};
propagatedBuildInputs = [
types-urllib3
];
# Module doesn't have tests
doCheck = false;

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-urllib3";
version = "1.26.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-NcF74J4bzvOx4hAcUXK5fNt4MwkVlzx0H0wZedhAXvk=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"urllib3-stubs"
];
meta = with lib; {
description = "Typing stubs for urllib3";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -9938,6 +9938,8 @@ in {
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
types-urllib3 = callPackage ../development/python-modules/types-urllib3 { };
typesentry = callPackage ../development/python-modules/typesentry { };
typesystem = callPackage ../development/python-modules/typesystem { };