treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutil

This commit is contained in:
Robert Schütz
2021-07-03 13:45:57 +02:00
parent d364e06e4b
commit 1ec5651913
117 changed files with 205 additions and 205 deletions
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
, requests, pyjwt, dateutil }:
, requests, pyjwt, python-dateutil }:
buildPythonPackage rec {
pname = "adal";
@@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "d74f45b81317454d96e982fd1c50e6fb5c99ac2223728aea8764433a39f566f1";
};
propagatedBuildInputs = [ requests pyjwt dateutil ];
propagatedBuildInputs = [ requests pyjwt python-dateutil ];
meta = with lib; {
description = "Library to make it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources";