python312Packages.adal: use pyproject = true

This commit is contained in:
TomaSajt 2024-05-07 03:59:32 +02:00
parent 084a9982ef
commit bce7c24ddc
No known key found for this signature in database
GPG Key ID: F011163C050122A1

View File

@ -6,12 +6,13 @@
, pytestCheckHook
, python-dateutil
, requests
, setuptools
}:
buildPythonPackage rec {
pname = "adal";
version = "1.2.7";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "AzureAD";
@ -24,7 +25,11 @@ buildPythonPackage rec {
sed -i '/cryptography/d' setup.py
'';
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
pyjwt
python-dateutil
requests