1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 openpyxl,
7 robotframework,
8}:
9
10buildPythonPackage rec {
11 pname = "robotframework-excellib";
12 version = "2.0.1";
13 pyproject = true;
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-ZzAwlYM8DgWD1hfWRnY8u2RnZc3V368kgigBApeDZYg=";
18 };
19
20 nativeBuildInputs = [ setuptools ];
21
22 propagatedBuildInputs = [
23 openpyxl
24 robotframework
25 ];
26
27 pythonImportsCheck = [ "ExcelLibrary" ];
28
29 # upstream has no tests
30 doCheck = false;
31
32 meta = {
33 description = "Robot Framework library for working with Excel documents";
34 homepage = "https://github.com/peterservice-rnd/robotframework-excellib";
35 license = lib.licenses.asl20;
36 maintainers = with lib.maintainers; [ dotlambda ];
37 };
38}