summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/adal
diff options
context:
space:
mode:
authorwisut hantanong <wizzup@gmail.com>2017-07-19 16:04:59 +0700
committerwisut hantanong <wizzup@gmail.com>2017-07-19 16:04:59 +0700
commit68bcf522c71ed7a2690544b8fc33be000ebe114e (patch)
treec9b75b9a48fcd64e151549f6fc1d9edafcf40ce3 /pkgs/development/python-modules/adal
parentc21e915c972116b29bcf10c44f469f8036aa2aa5 (diff)
python.pkgs.adal : move to separate expression
Diffstat (limited to 'pkgs/development/python-modules/adal')
-rw-r--r--pkgs/development/python-modules/adal/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/adal/default.nix b/pkgs/development/python-modules/adal/default.nix
new file mode 100644
index 000000000000..982e63882ad3
--- /dev/null
+++ b/pkgs/development/python-modules/adal/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, requests, pyjwt }:
+
+buildPythonPackage rec {
+ pname = "adal";
+ version = "0.1.0";
+ name = "${pname}-${version}";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1f32k18ck54adqlgvh6fjhy4yavcyrwy813prjyqppqqq4bn1a09";
+ };
+
+ propagatedBuildInputs = [ requests pyjwt ];
+
+ 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";
+ homepage = https://github.com/AzureAD/azure-activedirectory-library-for-python;
+ license = licenses.mit;
+ maintainers = with maintainers; [ phreedom ];
+ };
+}