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