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

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_0.18.0/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-11-20 10:05:01 +01:00
parent ae03901e1a
commit eb1d6dc5e6

View File

@ -1,34 +1,33 @@
{ 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 ];
};