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