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