pythonPackages.azure-identity: init at 1.1.0

wip/yesman
Kevin Amado 5 years ago
parent 8f08c1baee
commit b4f81b9628
No known key found for this signature in database
GPG Key ID: 04D0CEAF916A9A40
  1. 53
      pkgs/development/python-modules/azure-identity/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,53 @@
{ buildPythonPackage
, fetchPypi
, isPy38
, lib
# pythonPackages
, azure-common
, azure-core
, azure-nspkg
, cryptography
, mock
, msal
, msal-extensions
, msrest
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-identity";
version = "1.1.0";
disabled = isPy38;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1xn4nwi4vly8n3mmphv0wbdg9k55gsgmk3fdwma8rm3m3c7593hc";
};
propagatedBuildInputs = [
azure-common
azure-core
azure-nspkg
cryptography
mock
msal
msal-extensions
msrest
msrestazure
];
# Requires checkout from mono-repo and a mock account:
# https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/tests.yml
doCheck = false;
meta = with lib; {
description = "Microsoft Azure Identity Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [
kamadorueda
];
};
}

@ -282,6 +282,8 @@ in {
azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { };
azure-identity = callPackage ../development/python-modules/azure-identity { };
azure-keyvault = callPackage ../development/python-modules/azure-keyvault { };
azure-keyvault-keys = callPackage ../development/python-modules/azure-keyvault-keys { };

Loading…
Cancel
Save