python311Packages.robotframework-excellib: init at 2.0.1

This commit is contained in:
Robert Schütz
2024-01-29 14:36:40 -08:00
parent c002c6aa97
commit 2d9cbaf7a2
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, openpyxl
, robotframework
}:
buildPythonPackage rec {
pname = "robotframework-excellib";
version = "2.0.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ZzAwlYM8DgWD1hfWRnY8u2RnZc3V368kgigBApeDZYg=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
openpyxl
robotframework
];
pythonImportsCheck = [ "ExcelLibrary" ];
# upstream has no tests
doCheck = false;
meta = {
description = "Robot Framework library for working with Excel documents";
homepage = "https://github.com/peterservice-rnd/robotframework-excellib";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -12722,6 +12722,8 @@ self: super: with self; {
robotframework-databaselibrary = callPackage ../development/python-modules/robotframework-databaselibrary { };
robotframework-excellib = callPackage ../development/python-modules/robotframework-excellib { };
robotframework-pythonlibcore = callPackage ../development/python-modules/robotframework-pythonlibcore { };
robotframework-requests = callPackage ../development/python-modules/robotframework-requests { };