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