python311Packages.azure-mgmt-servicefabric: 2.0.0 -> 2.1.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-servicefabric_2.1.0/sdk/servicefabric/azure-mgmt-servicefabric/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2024-01-06 11:41:35 +01:00
parent 868769dc6c
commit cce535b9d6

View File

@ -1,40 +1,46 @@
{ lib { lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, azure-mgmt-nspkg , buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-servicefabric"; pname = "azure-mgmt-servicefabric";
version = "2.0.0"; version = "2.1.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; hash = "sha256-oIQzBJVUQ2yQhEvIqWgg6INplITm/8mQMv0lcfjF99Y=";
sha256 = "4c6f3de2526a27af78aecae248604f941c4d059fbcf2265912a380e3c788735d";
}; };
propagatedBuildInputs = [ nativeBuildInputs = [
msrest setuptools
msrestazure
azure-common
azure-mgmt-core
azure-mgmt-nspkg
]; ];
pythonNamespaces = [ "azure.mgmt" ]; propagatedBuildInputs = [
isodate
azure-common
azure-mgmt-core
];
# has no tests pythonNamespaces = [
"azure.mgmt"
];
# Module has no tests
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Service Fabric Management Client Library"; description = "This is the Microsoft Azure Service Fabric Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicefabric/azure-mgmt-servicefabric";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-servicefabric_${version}/sdk/servicefabric/azure-mgmt-servicefabric/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ maxwilson ]; maintainers = with maintainers; [ maxwilson ];
}; };