python310.pkgs.netapp-ontap: init at 9.12.1.0

This commit is contained in:
Sandro Jäckel
2023-06-13 16:22:09 +02:00
parent fde17beb21
commit 3d5e359d4e
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, cliche
, marshmallow
, pytestCheckHook
, recline
, requests
, requests-toolbelt
, urllib3
}:
buildPythonPackage rec {
pname = "netapp-ontap";
version = "9.12.1.0";
format = "setuptools";
src = fetchPypi {
pname = "netapp_ontap";
inherit version;
sha256 = "sha256-eqFj2xYl4X1TB4Rxajpor5zgJdoISJk89KpARAHI/W0=";
};
propagatedBuildInputs = [
marshmallow
requests
requests-toolbelt
urllib3
# required for cli
cliche
recline
];
# no tests in sdist and no other download available
doCheck = false;
pythonImportsCheck = [ "netapp_ontap" ];
meta = with lib; {
description = "A library for working with ONTAP's REST APIs simply in Python";
homepage = "https://devnet.netapp.com/restapi.php";
license = licenses.bsd3;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}
+2
View File
@@ -6684,6 +6684,8 @@ self: super: with self; {
netapp-lib = callPackage ../development/python-modules/netapp-lib { };
netapp-ontap = callPackage ../development/python-modules/netapp-ontap { };
netcdf4 = callPackage ../development/python-modules/netcdf4 { };
netdata = callPackage ../development/python-modules/netdata { };