python310Packages.azure-identity: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-04-29 14:45:45 +02:00 committed by GitHub
parent ba4daa9e64
commit 4be1c497a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,58 +1,55 @@
{ buildPythonPackage { lib
, buildPythonPackage
, fetchPypi , fetchPypi
, lib
# pythonPackages
, azure-common , azure-common
, azure-core , azure-core
, azure-nspkg
, cryptography , cryptography
, mock , mock
, msal , msal
, msal-extensions , msal-extensions
, msrest , msrest
, msrestazure , msrestazure
, pythonOlder
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-identity"; pname = "azure-identity";
version = "1.10.0"; version = "1.10.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "sha256-ZW5QNNnO8pfPmzU3btYgCFJzwYz6Us6kpiW/DV0tZAk="; hash = "sha256-ZW5QNNnO8pfPmzU3btYgCFJzwYz6Us6kpiW/DV0tZAk=";
}; };
postPatch = ''
substituteInPlace setup.py \
--replace "msal-extensions~=0.3.0" "msal-extensions"
'';
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common azure-common
azure-core azure-core
azure-nspkg
cryptography cryptography
mock mock
msal msal
msal-extensions msal-extensions
msrest msrest
msrestazure msrestazure
six
]; ];
pythonImportsCheck = [ "azure.identity" ]; pythonImportsCheck = [
"azure.identity"
];
# Requires checkout from mono-repo and a mock account: # Requires checkout from mono-repo and a mock account:
# https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/tests.yml # https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/tests.yml
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {
description = "Microsoft Azure Identity Library for Python"; description = "Microsoft Azure Identity Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ maintainers = with maintainers; [ kamadorueda ];
kamadorueda
];
}; };
} }