1{ lib, buildPythonPackage, fetchPypi
2, azure-common
3, azure-core
4, msrest
5}:
6
7buildPythonPackage rec {
8 pname = "azure-synapse-accesscontrol";
9 version = "0.7.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "565aa26336d560c028775e8ae50d0691aa7089e96170e78342371b773da3137c";
14 extension = "zip";
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.accesscontrol" ];
27
28 meta = with lib; {
29 description = "Azure python SDK";
30 homepage = "https://github.com/Azure/azure-sdk-for-python/";
31 license = licenses.mit;
32 maintainers = with maintainers; [ jonringer ];
33 };
34}