Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi 2, azure-common 3, azure-core 4, msrest 5}: 6 7buildPythonPackage rec { 8 pname = "azure-synapse-artifacts"; 9 version = "0.16.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 extension = "zip"; 14 hash = "sha256-J96cBqCCajK34M7v+2h6t2ptm7QwmfQt25674Q4Nr94="; 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}