Files
nixpkgs/pkgs/development/python-modules/azure-mgmt-compute/default.nix

48 lines
1.0 KiB
Nix

{
lib,
azure-mgmt-common,
azure-mgmt-core,
buildPythonPackage,
fetchPypi,
isodate,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-mgmt-compute";
version = "37.1.0";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_compute";
inherit version;
hash = "sha256-V67UT4TCpTMj4Rw3MUhd176ZruDdGnT1+nffYHlD00o=";
};
build-system = [ setuptools ];
dependencies = [
azure-mgmt-common
azure-mgmt-core
isodate
];
pythonNamespaces = [ "azure.mgmt" ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.compute" ];
meta = {
description = "This is the Microsoft Azure Compute Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-compute";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
olcai
maxwilson
];
};
}