2019-04-29 14:22:42 -07:00
|
|
|
{ lib
|
2018-10-10 09:26:06 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, azure-mgmt-common
|
2020-09-28 10:14:37 -07:00
|
|
|
, azure-mgmt-core
|
2018-10-10 09:26:06 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-03-11 07:31:54 -08:00
|
|
|
version = "19.0.0";
|
2018-10-10 09:26:06 -07:00
|
|
|
pname = "azure-mgmt-compute";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2021-03-11 07:31:54 -08:00
|
|
|
sha256 = "65afe759c6ee87dd89d65d59c8da4b2c04d197c07c1fbfdc56ef1aea468e4525";
|
2018-10-10 09:26:06 -07:00
|
|
|
};
|
|
|
|
|
2019-04-29 14:22:42 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
azure-mgmt-common
|
2020-09-28 10:14:37 -07:00
|
|
|
azure-mgmt-core
|
2019-04-29 14:22:42 -07:00
|
|
|
];
|
2018-10-10 09:26:06 -07:00
|
|
|
|
2020-03-17 15:43:56 -07:00
|
|
|
pythonNamespaces = [ "azure.mgmt" ];
|
|
|
|
|
2019-04-29 14:22:42 -07:00
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "This is the Microsoft Azure Compute Management Client Library";
|
2019-10-19 09:47:11 -07:00
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
2019-04-29 14:22:42 -07:00
|
|
|
license = licenses.mit;
|
2020-11-15 06:35:46 -08:00
|
|
|
maintainers = with maintainers; [ olcai maxwilson ];
|
2018-10-10 09:26:06 -07:00
|
|
|
};
|
|
|
|
}
|