Files
nixpkgs/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

43 lines
1.1 KiB
Nix

{
lib,
azure-mgmt-core,
buildPythonPackage,
fetchPypi,
msrest,
typing-extensions,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-mgmt-containerservice";
version = "40.2.0";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_containerservice";
inherit version;
hash = "sha256-rNVcrpW3aO/rA3fYPeoH1hDENO7AwIngKTX/MfDj4H0=";
};
build-system = [ setuptools ];
dependencies = [
msrest
azure-mgmt-core
typing-extensions
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.containerservice" ];
meta = {
description = "This is the Microsoft Azure Container Service Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerservice/azure-mgmt-containerservice";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-containerservice_${version}/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
}