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-spark"; 9 version = "0.7.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "86fa29463a24b7c37025ff21509b70e36b4dace28e5d92001bc920488350acd5"; 14 extension = "zip"; 15 }; 16 17 propagatedBuildInputs = [ 18 azure-common 19 azure-core 20 msrest 21 ]; 22 23 pythonImportsCheck = [ "azure.synapse.spark" ]; 24 25 meta = with lib; { 26 description = "Azure python SDK"; 27 homepage = "https://github.com/Azure/azure-sdk-for-python/"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ jonringer ]; 30 }; 31}