python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / robotframework-excellib / default.nix
blob8810bfbac9a1bec42ce2670b81a4fb99a985c428
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   openpyxl,
7   robotframework,
8 }:
10 buildPythonPackage rec {
11   pname = "robotframework-excellib";
12   version = "2.0.1";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-ZzAwlYM8DgWD1hfWRnY8u2RnZc3V368kgigBApeDZYg=";
18   };
20   nativeBuildInputs = [ setuptools ];
22   propagatedBuildInputs = [
23     openpyxl
24     robotframework
25   ];
27   pythonImportsCheck = [ "ExcelLibrary" ];
29   # upstream has no tests
30   doCheck = false;
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   };