Merge pull request #303804 from r-ryantm/auto-update/python311Packages.types-redis
python311Packages.types-redis: 4.6.0.20240311 -> 4.6.0.20240409
This commit is contained in:
commit
56e1c1009e
1 changed files with 14 additions and 12 deletions
|
@ -1,21 +1,25 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, cryptography
|
||||
, types-pyopenssl
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
cryptography,
|
||||
types-pyopenssl,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-redis";
|
||||
version = "4.6.0.20240311";
|
||||
format = "setuptools";
|
||||
version = "4.6.0.20240409";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-4Em73/DgofjnAbZGNoESkdIb/3m/HnhQhQpEBVIkqF8=";
|
||||
hash = "sha256-ziF8J5WB12nfmSxbdtYcZUJbCmeWJgSOYz5kOGjriBs=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
cryptography
|
||||
types-pyopenssl
|
||||
];
|
||||
|
@ -23,9 +27,7 @@ buildPythonPackage rec {
|
|||
# Module doesn't have tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"redis-stubs"
|
||||
];
|
||||
pythonImportsCheck = [ "redis-stubs" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Typing stubs for redis";
|
||||
|
|
Loading…
Reference in a new issue