2019-04-29 22:27:10 +01:00
|
|
|
{ lib
|
2018-10-10 17:29:12 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, azure-mgmt-common
|
2019-04-29 22:27:10 +01:00
|
|
|
, isPy3k
|
2018-10-10 17:29:12 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-11-02 22:59:16 +00:00
|
|
|
version = "6.0.0";
|
2018-10-10 17:29:12 +01:00
|
|
|
pname = "azure-mgmt-storage";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-11-02 22:59:16 +00:00
|
|
|
sha256 = "0pgmxr8shz6rmgbacfy1xb99y9ja38ck1lap0n58m6jjy1mgxk2w";
|
2018-10-10 17:29:12 +01:00
|
|
|
};
|
|
|
|
|
2019-04-29 22:27:10 +01:00
|
|
|
postInstall = if isPy3k then "" else ''
|
2018-10-10 17:29:12 +01:00
|
|
|
echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py
|
|
|
|
echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ azure-mgmt-common ];
|
|
|
|
|
2019-04-29 22:27:10 +01:00
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "This is the Microsoft Azure Storage Management Client Library";
|
2019-10-19 17:47:11 +01:00
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
2019-04-29 22:27:10 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ olcai mwilsoninsight ];
|
2018-10-10 17:29:12 +01:00
|
|
|
};
|
|
|
|
}
|