Merge pull request #260646 from fabaff/azure-mgmt-cosmosdb-bump

python311Packages.azure-mgmt-cosmosdb: 9.2.0 -> 9.3.0
This commit is contained in:
Nick Cao 2023-10-12 11:30:56 -04:00 committed by GitHub
commit 7d867ceddd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,39 +1,41 @@
{ lib { lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-cosmosdb"; pname = "azure-mgmt-cosmosdb";
version = "9.2.0"; version = "9.3.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.9";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; hash = "sha256-02DisUN2/auBDhPgE9aUvEvYwoQUQC4NYGD/PQZOl/Y=";
hash = "sha256-PAaBkR77Ho2YI5I+lmazR/8vxEZWpbvM427yRu1ET0k=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
msrest isodate
msrestazure
azure-common azure-common
azure-mgmt-core azure-mgmt-core
]; ];
# has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [
"azure.mgmt.cosmosdb"
];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Cosmos DB Management Client Library"; description = "Module to work with the Microsoft Azure Cosmos DB Management";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cosmosdb_${version}/sdk/cosmos/azure-mgmt-cosmosdb/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ maxwilson ]; maintainers = with maintainers; [ maxwilson ];
}; };