Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / robotframework-excellib / default.nix
blob550cc45e8ca3588fb580d07c59ad30bf146f2927
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , openpyxl
6 , robotframework
7 }:
9 buildPythonPackage rec {
10   pname = "robotframework-excellib";
11   version = "2.0.1";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-ZzAwlYM8DgWD1hfWRnY8u2RnZc3V368kgigBApeDZYg=";
17   };
19   nativeBuildInputs = [
20     setuptools
21   ];
23   propagatedBuildInputs = [
24     openpyxl
25     robotframework
26   ];
28   pythonImportsCheck = [ "ExcelLibrary" ];
30   # upstream has no tests
31   doCheck = false;
33   meta = {
34     description = "Robot Framework library for working with Excel documents";
35     homepage = "https://github.com/peterservice-rnd/robotframework-excellib";
36     license = lib.licenses.asl20;
37     maintainers = with lib.maintainers; [ dotlambda ];
38   };