python313Packages.azure-mgmt-advisor: refactor (#433438)

This commit is contained in:
Fabian Affolter
2025-08-13 23:39:57 +02:00
committed by GitHub
@@ -1,35 +1,35 @@
{
lib,
azure-common,
azure-mgmt-core,
buildPythonPackage,
fetchPypi,
msrest,
msrestazure,
azure-common,
isPy3k,
azure-mgmt-core,
azure-mgmt-nspkg,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-mgmt-advisor";
version = "9.0.0";
format = "setuptools";
pyproject = true;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "fc408b37315fe84781b519124f8cb1b8ac10b2f4241e439d0d3e25fd6ca18d7b";
hash = "sha256-/ECLNzFf6EeBtRkST4yxuKwQsvQkHkOdDT4l/WyhjXs=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
msrest
msrestazure
azure-common
azure-mgmt-core
]
++ lib.optionals (!isPy3k) [ azure-mgmt-nspkg ];
];
# has no tests
# Module has no tests
doCheck = false;
meta = with lib; {