Files
nixpkgs/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix
2026-02-01 16:42:18 +01:00

45 lines
1007 B
Nix

{
lib,
azure-common,
azure-mgmt-core,
buildPythonPackage,
fetchPypi,
isodate,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-mgmt-dashboard";
version = "2.0.0";
format = "wheel";
src = fetchPypi {
pname = "azure_mgmt_dashboard";
inherit version;
format = "wheel";
python = "py3";
dist = "py3";
hash = "sha256-1LASBzs+biyDDQPoCujcvLhK3iyNaHLU8VCtBSdTJxg=";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
isodate
typing-extensions
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.dashboard" ];
meta = {
description = "Microsoft Azure Dashboard Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/dashboard/azure-mgmt-dashboard/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ techknowlogick ];
};
}