python3Packages.robotframework-assertion-engine: init at 3.0.3
It's a required dependency for python3Packages.robotframework-databaselibrary.
This commit is contained in:
parent
081629be8b
commit
b3dc07c5cd
@ -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 ];
|
||||
};
|
||||
}
|
||||
@ -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
|
||||
{ };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user