2019-04-29 14:22:42 -07:00
|
|
|
{ lib
|
2018-10-10 09:26:06 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, azure-mgmt-common
|
2020-09-28 10:14:37 -07:00
|
|
|
, azure-mgmt-core
|
2019-04-29 14:22:42 -07:00
|
|
|
, isPy3k
|
2018-10-10 09:26:06 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-01-24 17:29:37 -08:00
|
|
|
version = "18.1.0";
|
2018-10-10 09:26:06 -07:00
|
|
|
pname = "azure-mgmt-compute";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2021-01-24 17:29:37 -08:00
|
|
|
sha256 = "02de691c5ce7237993e65b0ae6154b3bf8ec32bcb15f13ade72bc7f3cb3183d4";
|
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
|
|
|
};
|
|
|
|
}
|