Unverified Commit 312a50bb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #268672 from fabaff/azure-synapse-artifacts-bump

python311Packages.azure-synapse-artifacts: 0.17.0 -> 0.18.0
parents 0929ceda eb1d6dc5
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-core
, azure-mgmt-core
, msrest
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
}:

buildPythonPackage rec {
  pname = "azure-synapse-artifacts";
  version = "0.17.0";
  version = "0.18.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    hash = "sha256-58k8F/aUBBNJwGBiPZojkSzEXZ3Kd6uEwr0cZbFaM9k=";
    hash = "sha256-qgiHMzW7T5NuQl0jwZheMXp7wHhNOHyH24J6wfc4VqQ=";
  };

  propagatedBuildInputs = [
    azure-common
    azure-core
    azure-mgmt-core
    msrest
    isodate
  ];

  # zero tests run
  # Tests are only available in mono-repo
  doCheck = false;

  pythonImportsCheck = [
@@ -38,6 +37,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Microsoft Azure Synapse Artifacts Client Library for Python";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_${version}/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ jonringer ];
  };