blob: 8810bfbac9a1bec42ce2670b81a4fb99a985c428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
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 ];
};
}
|