2019-04-29 22:33:44 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, msrest
|
|
|
|
, msrestazure
|
|
|
|
, azure-common
|
2020-11-28 16:45:48 +00:00
|
|
|
, azure-mgmt-core
|
2019-04-29 22:33:44 +00:00
|
|
|
, azure-mgmt-nspkg
|
2022-03-25 12:45:30 +00:00
|
|
|
, pythonOlder
|
2019-04-29 22:33:44 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "azure-mgmt-containerservice";
|
2022-06-10 10:25:38 +00:00
|
|
|
version = "20.0.0";
|
2022-03-25 12:45:30 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
2019-04-29 22:33:44 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2022-06-10 10:25:38 +00:00
|
|
|
sha256 = "sha256-dCPFy24cXij50OH8go2idgCEXakMZu8swT5UcpNIzmA=";
|
2019-04-29 22:33:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
msrest
|
|
|
|
msrestazure
|
|
|
|
azure-common
|
2020-11-28 16:45:48 +00:00
|
|
|
azure-mgmt-core
|
2019-04-29 22:33:44 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2022-03-25 12:45:30 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"azure.mgmt.containerservice"
|
|
|
|
];
|
2021-10-18 17:27:09 +00:00
|
|
|
|
2019-04-29 22:33:44 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "This is the Microsoft Azure Container Service Management Client Library";
|
2019-10-19 16:47:11 +00:00
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
2019-04-29 22:33:44 +00:00
|
|
|
license = licenses.mit;
|
2020-11-15 14:35:46 +00:00
|
|
|
maintainers = with maintainers; [ maxwilson ];
|
2019-04-29 22:33:44 +00:00
|
|
|
};
|
|
|
|
}
|