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

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

authored by Fabian Affolter and committed by GitHub 312a50bb 0929ceda

+9 -9
+9 -9
pkgs/development/python-modules/azure-synapse-artifacts/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 2 , azure-common 5 3 , azure-core 6 4 , azure-mgmt-core 7 - , msrest 5 + , buildPythonPackage 6 + , fetchPypi 7 + , isodate 8 8 , pythonOlder 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-synapse-artifacts"; 13 - version = "0.17.0"; 13 + version = "0.18.0"; 14 14 format = "setuptools"; 15 15 16 - disabled = pythonOlder "3.7"; 16 + disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - extension = "zip"; 21 - hash = "sha256-58k8F/aUBBNJwGBiPZojkSzEXZ3Kd6uEwr0cZbFaM9k="; 20 + hash = "sha256-qgiHMzW7T5NuQl0jwZheMXp7wHhNOHyH24J6wfc4VqQ="; 22 21 }; 23 22 24 23 propagatedBuildInputs = [ 25 24 azure-common 26 25 azure-core 27 26 azure-mgmt-core 28 - msrest 27 + isodate 29 28 ]; 30 29 31 - # zero tests run 30 + # Tests are only available in mono-repo 32 31 doCheck = false; 33 32 34 33 pythonImportsCheck = [ ··· 38 37 meta = with lib; { 39 38 description = "Microsoft Azure Synapse Artifacts Client Library for Python"; 40 39 homepage = "https://github.com/Azure/azure-sdk-for-python"; 40 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_${version}/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md"; 41 41 license = licenses.mit; 42 42 maintainers = with maintainers; [ jonringer ]; 43 43 };