python3Packages.types-redis: init at 4.2.5

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
Florian Brandes 2022-05-24 20:06:47 +02:00
parent 7c8e39e452
commit 60a4fda91d
No known key found for this signature in database
GPG key ID: 074048E893713170
2 changed files with 31 additions and 0 deletions

View file

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

View file

@ -10600,6 +10600,8 @@ in {
types-pytz = callPackage ../development/python-modules/types-pytz { };
types-redis = callPackage ../development/python-modules/types-redis { };
types-requests = callPackage ../development/python-modules/types-requests { };
types-setuptools = callPackage ../development/python-modules/types-setuptools { };