1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-mgmt-common,
6 azure-mgmt-core,
7 pythonOlder,
8}:
9
10buildPythonPackage rec {
11 pname = "azure-mgmt-storage";
12 version = "21.1.0";
13 format = "setuptools";
14
15 disabled = pythonOlder "3.7";
16
17 src = fetchPypi {
18 inherit pname version;
19 hash = "sha256-1tPA6RfJiLye0Eckd9PvP5CIYAnrHZenEZRPg3VjAWI=";
20 };
21
22 propagatedBuildInputs = [
23 azure-mgmt-common
24 azure-mgmt-core
25 ];
26
27 pythonNamespaces = [ "azure.mgmt" ];
28
29 pythonImportsCheck = [ "azure.mgmt.storage" ];
30
31 # Module has no tests
32 doCheck = false;
33
34 meta = with lib; {
35 description = "This is the Microsoft Azure Storage Management Client Library";
36 homepage = "https://github.com/Azure/azure-sdk-for-python";
37 license = licenses.mit;
38 maintainers = with maintainers; [
39 jonringer
40 olcai
41 maxwilson
42 ];
43 };
44}