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