1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 wheel,
7 azure-core,
8 isodate,
9 typing-extensions,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-keyvault-securitydomain";
14 version = "1.0.0b1";
15 pyproject = true;
16
17 src = fetchPypi {
18 pname = "azure_keyvault_securitydomain";
19 inherit version;
20 hash = "sha256-MpGhked4qUfkso7QEyeJKpOu3PjgoN1nTPEWyxEEN3Y=";
21 };
22
23 build-system = [
24 setuptools
25 wheel
26 ];
27
28 dependencies = [
29 azure-core
30 isodate
31 typing-extensions
32 ];
33
34 pythonImportsCheck = [
35 "azure.keyvault.securitydomain"
36 ];
37
38 meta = {
39 description = "Microsoft Corporation Azure Keyvault Securitydomain Client Library for Python";
40 homepage = "https://pypi.org/project/azure-keyvault-securitydomain/1.0.0b1/";
41 license = lib.licenses.mit;
42 maintainers = with lib.maintainers; [ katexochen ];
43 };
44}