bd99e18b42
https://github.com/Azure/azure-sdk-for-python/blob/azure-cosmos_4.14.5/sdk/cosmos/azure-cosmos/CHANGELOG.md This commit was automatically generated using update-python-libraries.
43 lines
914 B
Nix
43 lines
914 B
Nix
{
|
|
lib,
|
|
azure-core,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "azure-cosmos";
|
|
version = "4.14.5";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "azure_cosmos";
|
|
inherit version;
|
|
hash = "sha256-MjmmBf4pyUt3ORgmdzqj0Nm75Lk5A/zltkNLDzJ0K6c=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
azure-core
|
|
typing-extensions
|
|
];
|
|
|
|
pythonNamespaces = [ "azure" ];
|
|
|
|
# Requires an active Azure Cosmos service
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "azure.cosmos" ];
|
|
|
|
meta = {
|
|
description = "Azure Cosmos DB API";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/cosmos/azure-cosmos";
|
|
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-cosmos_${version}/sdk/cosmos/azure-cosmos/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|