python3Packages.types-redis: fix build

add pyopenssl as propagatedBuildInput

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
2023-04-09 12:31:14 +02:00
parent 018143e394
commit 524715f17b
@@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, cryptography
, types-pyopenssl
}:
buildPythonPackage rec {
@@ -13,6 +15,11 @@ buildPythonPackage rec {
hash = "sha256-dmAXh1TWCkz6z1sz7gY6oGJTEXkcYgdc2TYTZiej978=";
};
propagatedBuildInputs = [
cryptography
types-pyopenssl
];
# Module doesn't have tests
doCheck = false;