blob: 0ff28e5ba8fc3c4b6bebe457b0b9ef049c287343 (
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
45
46
47
|
{
lib,
buildPythonPackage,
fetchPypi,
azure-mgmt-common,
azure-mgmt-core,
isodate,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-mgmt-storage";
version = "24.0.1";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_storage";
inherit version;
hash = "sha256-p/cGgWOzCOXx9xhUGsgBT3/5IZ2gRjv3NG7inZw0mTg=";
};
build-system = [ setuptools ];
dependencies = [
azure-mgmt-common
azure-mgmt-core
isodate
];
pythonNamespaces = [ "azure.mgmt" ];
pythonImportsCheck = [ "azure.mgmt.storage" ];
# Module has no tests
doCheck = false;
meta = {
description = "This is the Microsoft Azure Storage Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-storage_${version}/sdk/storage/azure-mgmt-storage/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
olcai
maxwilson
];
};
}
|