Files
nixpkgs/pkgs/development/python-modules/azure-mgmt-batchai/default.nix
2026-06-05 10:47:27 +07:00

45 lines
999 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
azure-common,
azure-mgmt-core,
isodate,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "azure-mgmt-batchai";
version = "7.0.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) version;
pname = "azure_mgmt_batchai";
hash = "sha256-XfAE/QyST8ZVlJR6nP9Pdgh97hfIhFM6G7sLINsn06M=";
};
build-system = [ setuptools ];
dependencies = [
isodate
azure-common
azure-mgmt-core
];
pythonNamespaces = [ "azure.mgmt" ];
# has no tests
doCheck = false;
meta = {
description = "This is the Microsoft Azure Batch AI Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-batchai_${finalAttrs.version}/sdk/batchai/azure-mgmt-batchai/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
})