pythonPackages.azure-mgmt-resource: refactor

Removed doCheck and updated metadata
This commit is contained in:
Max Wilson 2019-04-29 17:25:41 -04:00 committed by Wael M. Nasreddine
parent 51eac93460
commit 707a567ebd
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F

View File

@ -3,6 +3,7 @@
, fetchPypi , fetchPypi
, python , python
, azure-mgmt-common , azure-mgmt-common
, isPy3k
}: }:
@ -16,17 +17,20 @@ buildPythonPackage rec {
sha256 = "aef8573066026db04ed3e7c5e727904e42f6462b6421c2e8a3646e4c4f8128be"; sha256 = "aef8573066026db04ed3e7c5e727904e42f6462b6421c2e8a3646e4c4f8128be";
}; };
postInstall = '' postInstall = if isPy3k then "" else ''
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/__init__.py
echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py
''; '';
propagatedBuildInputs = [ azure-mgmt-common ]; propagatedBuildInputs = [ azure-mgmt-common ];
# has no tests
doCheck = false;
meta = with pkgs.lib; { meta = with pkgs.lib; {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "https://azure.microsoft.com/en-us/develop/python/"; homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/resources?view=azure-python;
license = licenses.asl20; license = licenses.mit;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai mwilsoninsight ];
}; };
} }