1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-mgmt-common,
6 azure-mgmt-core,
7 isodate,
8 pythonOlder,
9 setuptools,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-mgmt-storage";
14 version = "23.0.1";
15 pyproject = true;
16
17 disabled = pythonOlder "3.8";
18
19 src = fetchPypi {
20 pname = "azure_mgmt_storage";
21 inherit version;
22 hash = "sha256-w6sqyTUtHAHYW1bWcW3M4eRoD5ILFIoktDabuRuSI7Q=";
23 };
24
25 build-system = [ setuptools ];
26
27 dependencies = [
28 azure-mgmt-common
29 azure-mgmt-core
30 isodate
31 ];
32
33 pythonNamespaces = [ "azure.mgmt" ];
34
35 pythonImportsCheck = [ "azure.mgmt.storage" ];
36
37 # Module has no tests
38 doCheck = false;
39
40 meta = with lib; {
41 description = "This is the Microsoft Azure Storage Management Client Library";
42 homepage = "https://github.com/Azure/azure-sdk-for-python";
43 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-storage_${version}/sdk/storage/azure-mgmt-storage/CHANGELOG.md";
44 license = licenses.mit;
45 maintainers = with maintainers; [
46 olcai
47 maxwilson
48 ];
49 };
50}