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