python3Packages.adal: drop cryptography requirement

There is no usage of cryptography in that library.
This commit is contained in:
Martin Weinelt 2022-10-05 01:34:08 +02:00 committed by Martin Weinelt
parent b5393c3f78
commit 37803ddef7

View file

@ -20,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-HE8/P0aohoZNeMdcQVKdz6M31FMrjsd7oVytiaD0idI=";
};
postPatch = ''
sed -i '/cryptography/d' setup.py
'';
propagatedBuildInputs = [
pyjwt
python-dateutil