1{ lib
2, buildPythonPackage
3, fetchPypi
4, lxml
5, six
6, xmltodict
7}:
8
9buildPythonPackage rec {
10 pname = "netapp-lib";
11 version = "2021.6.25";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-1g4FCSMyS8T6F/T8BOqak4h1nJis8g9jaOluA4FTNpA=";
17 };
18
19 propagatedBuildInputs = [
20 lxml
21 six
22 xmltodict
23 ];
24
25 # no tests in sdist and no other download available
26 doCheck = false;
27
28 pythonImportsCheck = [ "netapp_lib" ];
29
30 meta = with lib; {
31 description = "netapp-lib is required for Ansible deployments to interact with NetApp storage systems";
32 homepage = "https://netapp.io/";
33 license = licenses.asl20;
34 maintainers = with maintainers; [ SuperSandro2000 ];
35 };
36}