python3Packages.robotframework-assertion-engine: init at 3.0.3

It's a required dependency for
python3Packages.robotframework-databaselibrary.
This commit is contained in:
Bjørn Forsman 2025-06-05 17:10:07 +02:00
parent 081629be8b
commit b3dc07c5cd
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
robotframework,
robotframework-pythonlibcore,
}:
buildPythonPackage rec {
pname = "robotframework-assertion-engine";
version = "3.0.3";
pyproject = true;
src = fetchPypi {
pname = "robotframework_assertion_engine";
inherit version;
hash = "sha256-HGCNTGnZZSCYah3cbe8Px/foSVIPHmiCpjO1HbuY/Yg=";
};
build-system = [
poetry-core
];
dependencies = [
robotframework
robotframework-pythonlibcore
];
pythonImportsCheck = [
"assertionengine"
];
meta = {
description = "Generic way to create meaningful and easy to use assertions for the Robot Framework libraries";
homepage = "https://pypi.org/project/robotframework-assertion-engine/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bjornfor ];
};
}

View File

@ -15484,6 +15484,10 @@ self: super: with self; {
robotframework = callPackage ../development/python-modules/robotframework { };
robotframework-assertion-engine =
callPackage ../development/python-modules/robotframework-assertion-engine
{ };
robotframework-databaselibrary =
callPackage ../development/python-modules/robotframework-databaselibrary
{ };