2019-04-29 21:27:10 +00:00
|
|
|
{ lib
|
2018-10-10 16:29:12 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, azure-mgmt-common
|
2019-04-29 21:27:10 +00:00
|
|
|
, isPy3k
|
2018-10-10 16:29:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-09-02 20:31:00 +00:00
|
|
|
version = "11.2.0";
|
2018-10-10 16:29:12 +00:00
|
|
|
pname = "azure-mgmt-storage";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2020-09-02 20:31:00 +00:00
|
|
|
sha256 = "fc8e3cbf3c58cab98d9b2218c774dae2cc90b693f5ab5a24a7a959febe6c0528";
|
2018-10-10 16:29:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ azure-mgmt-common ];
|
|
|
|
|
2020-03-17 22:43:56 +00:00
|
|
|
pythonNamespaces = [ "azure.mgmt" ];
|
|
|
|
|
2019-04-29 21:27:10 +00:00
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "This is the Microsoft Azure Storage Management Client Library";
|
2019-10-19 16:47:11 +00:00
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
2019-04-29 21:27:10 +00:00
|
|
|
license = licenses.mit;
|
2020-03-17 22:43:56 +00:00
|
|
|
maintainers = with maintainers; [ jonringer olcai mwilsoninsight ];
|
2018-10-10 16:29:12 +00:00
|
|
|
};
|
|
|
|
}
|