pythonPackages.azure-mgmt-compute: 4.4.0 -> 5.0.0
This commit is contained in:
parent
b0403da859
commit
3f669b4e54
@ -1,31 +1,37 @@
|
|||||||
{ pkgs
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, python
|
, python
|
||||||
, azure-mgmt-common
|
, azure-mgmt-common
|
||||||
|
, isPy3k
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "4.4.0";
|
version = "5.0.0";
|
||||||
pname = "azure-mgmt-compute";
|
pname = "azure-mgmt-compute";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
extension = "zip";
|
extension = "zip";
|
||||||
sha256 = "356219a354140ea26e6b4f4be4f855f1ffaf63af60de24cd2ca335b4ece9db00";
|
sha256 = "1zdypc8f825n60341ai2482rwgsc7l8dpr691j8hqz571l80y85w";
|
||||||
};
|
};
|
||||||
|
|
||||||
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
|
||||||
|
];
|
||||||
|
|
||||||
meta = with pkgs.lib; {
|
# has no tests
|
||||||
description = "Microsoft Azure SDK for Python";
|
doCheck = false;
|
||||||
homepage = "https://azure.microsoft.com/en-us/develop/python/";
|
|
||||||
license = licenses.asl20;
|
meta = with lib; {
|
||||||
maintainers = with maintainers; [ olcai ];
|
description = "This is the Microsoft Azure Compute Management Client Library";
|
||||||
|
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-compute;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ olcai mwilsoninsight ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user