1{ lib, buildPythonPackage, fetchPypi 2, azure-common 3, azure-core 4, msrest 5}: 6 7buildPythonPackage rec { 8 pname = "azure-synapse-artifacts"; 9 version = "0.13.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 extension = "zip"; 14 sha256 = "sha256-WJZtE7efs1xwalyb0Sr2J+pmPIt9gn2o01/prncb2uM="; 15 }; 16 17 propagatedBuildInputs = [ 18 azure-common 19 azure-core 20 msrest 21 ]; 22 23 # zero tests run 24 doCheck = false; 25 26 pythonImportsCheck = [ "azure.synapse.artifacts" ]; 27 28 meta = with lib; { 29 description = "Microsoft Azure Synapse Artifacts Client Library for Python"; 30 homepage = "https://github.com/Azure/azure-sdk-for-python"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ jonringer ]; 33 }; 34}