python312Packages.azure-mgmt-servicebus: remove unused dependency (#362153)

This commit is contained in:
Tomodachi94
2024-12-07 19:40:49 -08:00
committed by GitHub
@@ -3,18 +3,15 @@
buildPythonPackage,
fetchPypi,
msrest,
msrestazure,
azure-common,
azure-mgmt-core,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-mgmt-servicebus";
version = "8.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
@@ -22,9 +19,10 @@ buildPythonPackage rec {
hash = "sha256-i+kgjxQdmnifaNuNIZdU/3gGn9j5OQ6fdkS7laO+nsI=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
msrest
msrestazure
azure-common
azure-mgmt-core
];
@@ -32,10 +30,14 @@ buildPythonPackage rec {
# Module has no tests
doCheck = false;
meta = with lib; {
pythonNamespaces = [ "azure.mgmt" ];
pythonImportsCheck = [ "azure.mgmt.servicebus" ];
meta = {
description = "This is the Microsoft Azure Service Bus Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
}