summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/adal
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-05 01:34:08 +0200
committerMartin Weinelt <mweinelt@users.noreply.github.com>2022-10-05 02:24:52 +0200
commit37803ddef74ca4381ece080eefcdd65bed0e4fcb (patch)
tree6f0b9ccc049462dafd3f43d0a59f84d89da0920e /pkgs/development/python-modules/adal
parentb5393c3f78a19da8e56e6a02f48a958e5d6592cb (diff)
python3Packages.adal: drop cryptography requirement
There is no usage of cryptography in that library.
Diffstat (limited to 'pkgs/development/python-modules/adal')
-rw-r--r--pkgs/development/python-modules/adal/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/adal/default.nix b/pkgs/development/python-modules/adal/default.nix
index 45c256b6647b..e944248db17a 100644
--- a/pkgs/development/python-modules/adal/default.nix
+++ b/pkgs/development/python-modules/adal/default.nix
@@ -20,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-HE8/P0aohoZNeMdcQVKdz6M31FMrjsd7oVytiaD0idI=";
};
+ postPatch = ''
+ sed -i '/cryptography/d' setup.py
+ '';
+
propagatedBuildInputs = [
pyjwt
python-dateutil