nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 41 lines 957 B view raw
1{ 2 lib, 3 azure-common, 4 azure-core, 5 azure-mgmt-core, 6 buildPythonPackage, 7 fetchPypi, 8 isodate, 9}: 10 11buildPythonPackage rec { 12 pname = "azure-synapse-artifacts"; 13 version = "0.21.0"; 14 format = "setuptools"; 15 16 src = fetchPypi { 17 pname = "azure_synapse_artifacts"; 18 inherit version; 19 hash = "sha256-1+N1Fs+FaeA8YE2SHjQH1xQM91I7Z7Z/dXyvmZ48juc="; 20 }; 21 22 propagatedBuildInputs = [ 23 azure-common 24 azure-core 25 azure-mgmt-core 26 isodate 27 ]; 28 29 # Tests are only available in mono-repo 30 doCheck = false; 31 32 pythonImportsCheck = [ "azure.synapse.artifacts" ]; 33 34 meta = { 35 description = "Microsoft Azure Synapse Artifacts Client Library for Python"; 36 homepage = "https://github.com/Azure/azure-sdk-for-python"; 37 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_${version}/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md"; 38 license = lib.licenses.mit; 39 maintainers = [ ]; 40 }; 41}