2019-04-29 18:27:18 -04:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
msrest,
|
|
|
|
msrestazure,
|
|
|
|
azure-common,
|
2020-11-28 08:45:48 -08:00
|
|
|
azure-mgmt-core,
|
2019-04-29 18:27:18 -04:00
|
|
|
azure-mgmt-nspkg,
|
2023-05-11 07:04:40 +02:00
|
|
|
pythonOlder,
|
2019-04-29 18:27:18 -04:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "azure-mgmt-containerinstance";
|
2023-05-11 04:12:25 +00:00
|
|
|
version = "10.1.0";
|
2023-05-11 07:04:40 +02:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2019-04-29 18:27:18 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2023-05-11 04:12:25 +00:00
|
|
|
hash = "sha256-eNQ3rbKFdPRIyDjtXwH5ztN4GWCYBh3rWdn3AxcEwX4=";
|
2019-04-29 18:27:18 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
msrest
|
|
|
|
msrestazure
|
|
|
|
azure-common
|
2020-11-28 08:45:48 -08:00
|
|
|
azure-mgmt-core
|
2019-04-29 18:27:18 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2023-05-11 07:04:40 +02:00
|
|
|
pythonImportsCheck = [ "azure.mgmt.containerinstance" ];
|
2021-09-22 18:49:51 +00:00
|
|
|
|
2019-04-29 18:27:18 -04:00
|
|
|
meta = with lib; {
|
|
|
|
description = "This is the Microsoft Azure Container Instance Client Library";
|
2019-10-19 09:47:11 -07:00
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
2019-04-29 18:27:18 -04:00
|
|
|
license = licenses.mit;
|
2020-11-15 09:35:46 -05:00
|
|
|
maintainers = with maintainers; [ maxwilson ];
|
2019-04-29 18:27:18 -04:00
|
|
|
};
|
|
|
|
}
|