Commit 3d27edc7 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.azure-cosmos: refactor

parent db176ef1
Loading
Loading
Loading
Loading
+26 −10
Original line number Diff line number Diff line
{ buildPythonPackage
, lib
{ lib
, azure-core
, buildPythonPackage
, fetchPypi
, six
, requests
, pythonOlder
, setuptools
, typing-extensions
}:

buildPythonPackage rec {
  version = "4.6.0";
  format = "setuptools";
  pname = "azure-cosmos";
  version = "4.6.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-2uxqwgHGRzsJK2Ku5x44G+62w6jcNhJJgytwSMTwYeI=";
    hash = "sha256-2uxqwgHGRzsJK2Ku5x44G+62w6jcNhJJgytwSMTwYeI=";
  };

  propagatedBuildInputs = [ six requests ];
  build-system = [
    setuptools
  ];

  dependencies = [
    azure-core
    typing-extensions
  ];

  pythonNamespaces = [ "azure" ];

  # requires an active Azure Cosmos service
  # Requires an active Azure Cosmos service
  doCheck = false;

  pythonImportsCheck = [
    "azure.cosmos"
  ];

  meta = with lib; {
    description = "Azure Cosmos DB API";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    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 = licenses.mit;
    maintainers = with maintainers; [ jonringer ];
  };