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