summaryrefslogtreecommitdiff
path: root/python-msal
diff options
context:
space:
mode:
authorErich Eckner <erich.eckner.ext@bestsecret.com>2023-01-02 12:47:06 +0100
committerErich Eckner <erich.eckner.ext@bestsecret.com>2023-01-02 16:40:56 +0100
commitf42272aaa280956d77891d40039c9ba67bfb8882 (patch)
treead828671dc0139f23800574fe7a2ba88539b3ea4 /python-msal
parent33271ea04d8b2dd02000aefb477bd207475b441a (diff)
downloadarchlinuxewe-f42272aaa280956d77891d40039c9ba67bfb8882.tar.xz
try to fix azure-cli packages
Diffstat (limited to 'python-msal')
-rw-r--r--python-msal/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/python-msal/PKGBUILD b/python-msal/PKGBUILD
new file mode 100644
index 000000000..23202b573
--- /dev/null
+++ b/python-msal/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Erich Eckner <arch at eckner dot net>
+# Contributor: Julian Weigt <juw@posteo.de>
+# PKGBUILD generated by pipman, description shortened
+# Python package author: Microsoft Corporation <nugetaad@microsoft.com>
+pkgname=python-msal
+pkgver=1.14.0
+pkgrel=0
+pkgdesc="Microsoft Authentication Library for Python library to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts and Microsoft Accounts using OAuth2 and OpenID Connect"
+arch=(any)
+url="https://github.com/AzureAD/microsoft-authentication-library-for-python"
+license=(MIT)
+depends=("python-requests" "python-pyjwt" "python-cryptography" "python-mock")
+makedepends=("python-setuptools")
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/AzureAD/microsoft-authentication-library-for-python/archive/refs/tags/$pkgver.tar.gz")
+sha256sums=('ef2e6d15283c44eb93f195d212a5234538c7303f4dd7bd1b025f950db75c4f59')
+
+build() {
+ cd "microsoft-authentication-library-for-python-$pkgver"
+ python setup.py build
+}
+
+package() {
+ cd "microsoft-authentication-library-for-python-$pkgver"
+ python setup.py install --root="$pkgdir" --optimize=1
+}