Commit f409e12f authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.azure-synapse-artifacts: 0.16.0 -> 0.17.0

parent fba2eab4
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-core
, azure-mgmt-core
, msrest
, pythonOlder
}:

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

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    hash = "sha256-J96cBqCCajK34M7v+2h6t2ptm7QwmfQt25674Q4Nr94=";
    hash = "sha256-58k8F/aUBBNJwGBiPZojkSzEXZ3Kd6uEwr0cZbFaM9k=";
  };

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

  # zero tests run
  doCheck = false;

  pythonImportsCheck = [ "azure.synapse.artifacts" ];
  pythonImportsCheck = [
    "azure.synapse.artifacts"
  ];

  meta = with lib; {
    description = "Microsoft Azure Synapse Artifacts Client Library for Python";