1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 poetry-core,
6 robotframework,
7 robotframework-pythonlibcore,
8}:
9
10buildPythonPackage rec {
11 pname = "robotframework-assertion-engine";
12 version = "3.0.3";
13 pyproject = true;
14
15 src = fetchPypi {
16 pname = "robotframework_assertion_engine";
17 inherit version;
18 hash = "sha256-HGCNTGnZZSCYah3cbe8Px/foSVIPHmiCpjO1HbuY/Yg=";
19 };
20
21 build-system = [
22 poetry-core
23 ];
24
25 dependencies = [
26 robotframework
27 robotframework-pythonlibcore
28 ];
29
30 pythonImportsCheck = [
31 "assertionengine"
32 ];
33
34 meta = {
35 description = "Generic way to create meaningful and easy to use assertions for the Robot Framework libraries";
36 homepage = "https://pypi.org/project/robotframework-assertion-engine/";
37 license = lib.licenses.asl20;
38 maintainers = with lib.maintainers; [ bjornfor ];
39 };
40}