GNOME: 3.22 -> 3.24

This is a squash commit of the joint work from:

* Jan Tojnar (@jtojnar)
* Linus Heckemann (@lheckemann)
* Ryan Mulligan (@ryantm)
* romildo (@romildo)
* Tom Hunger (@teh)
This commit is contained in:
Linus Heckemann
2017-06-25 17:59:23 +01:00
committed by Tom Hunger
parent 9eafe6706d
commit b73e3b6095
359 changed files with 913 additions and 922 deletions

View File

@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi
, requests, pyjwt }:
, requests, pyjwt, dateutil }:
buildPythonPackage rec {
pname = "adal";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
sha256 = "7c5bbf4d8a17d535e6e857b28a41cedddc2767fc57424c15d484fa779bb97325";
};
propagatedBuildInputs = [ requests pyjwt ];
propagatedBuildInputs = [ requests pyjwt dateutil ];
meta = with stdenv.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";