python313Packages.azure-mgmt-search: 9.1.0 -> 9.2.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-search_9.2.0/sdk/search/azure-mgmt-search/CHANGELOG.md
This commit is contained in:
Fabian Affolter
2025-08-13 11:31:28 +02:00
parent 65f159654d
commit ecdc0dbf50

View File

@@ -5,28 +5,27 @@
buildPythonPackage,
fetchPypi,
isodate,
pythonOlder,
typing-extensions,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-mgmt-search";
version = "9.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
version = "9.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-U7xu6tsJdNIfEguyG7Xmgn321lDhc0dGD9g+LWiINZk=";
pname = "azure_mgmt_search";
inherit version;
hash = "sha256-oNoOwzLR9D0PastjuM/YAIWwdeka/PgS+MdprZ/crYQ=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
azure-common
azure-mgmt-core
isodate
]
++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
];
# Module has no tests
doCheck = false;