1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-common,
6 azure-mgmt-core,
7 msrest,
8}:
9
10buildPythonPackage rec {
11 pname = "azure-mgmt-servicelinker";
12 version = "1.1.0";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-QVw6Y9HachwBRwCbF0cSGLCAkSJtNnXBvsj5YX1TmJU=";
18 extension = "zip";
19 };
20
21 propagatedBuildInputs = [
22 azure-common
23 azure-mgmt-core
24 msrest
25 ];
26
27 pythonImportsCheck = [ "azure.mgmt.servicelinker" ];
28
29 # no tests with sdist
30 doCheck = false;
31
32 meta = with lib; {
33 description = "Microsoft Azure Servicelinker Management Client Library for Python";
34 homepage = "https://github.com/Azure/azure-sdk-for-python";
35 license = licenses.mit;
36 maintainers = [ ];
37 };
38}