Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, azure-common 5, azure-core 6, azure-mgmt-core 7, msrest 8, pythonOlder 9}: 10 11buildPythonPackage rec { 12 pname = "azure-synapse-artifacts"; 13 version = "0.17.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 extension = "zip"; 21 hash = "sha256-58k8F/aUBBNJwGBiPZojkSzEXZ3Kd6uEwr0cZbFaM9k="; 22 }; 23 24 propagatedBuildInputs = [ 25 azure-common 26 azure-core 27 azure-mgmt-core 28 msrest 29 ]; 30 31 # zero tests run 32 doCheck = false; 33 34 pythonImportsCheck = [ 35 "azure.synapse.artifacts" 36 ]; 37 38 meta = with lib; { 39 description = "Microsoft Azure Synapse Artifacts Client Library for Python"; 40 homepage = "https://github.com/Azure/azure-sdk-for-python"; 41 license = licenses.mit; 42 maintainers = with maintainers; [ jonringer ]; 43 }; 44}