depot/third_party/nixpkgs/pkgs/development/python-modules/robotframework-excellib/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

38 lines
773 B
Nix

{
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 ];
};
}