python311Packages.types-redis: refactor

This commit is contained in:
Fabian Affolter 2024-04-13 15:15:49 +02:00
parent ecf60ecf68
commit 4673cc1e00

View File

@ -3,19 +3,24 @@
, fetchPypi
, cryptography
, types-pyopenssl
, setuptools
}:
buildPythonPackage rec {
pname = "types-redis";
version = "4.6.0.20240409";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ziF8J5WB12nfmSxbdtYcZUJbCmeWJgSOYz5kOGjriBs=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
cryptography
types-pyopenssl
];