1{
2 lib,
3 allpairspy,
4 buildPythonPackage,
5 fetchPypi,
6 pyparsing,
7 robotframework,
8 setuptools,
9}:
10
11buildPythonPackage rec {
12 pname = "robomachine";
13 version = "0.10.0";
14 format = "pyproject";
15
16 src = fetchPypi {
17 pname = "RoboMachine";
18 inherit version;
19 hash = "sha256-XrxHaV9U7mZ2TvySHGm6qw1AsoukppzwPq4wufIjL+k=";
20 };
21
22 nativeBuildInputs = [
23 setuptools
24 ];
25
26 propagatedBuildInputs = [
27 pyparsing
28 robotframework
29 allpairspy
30 ];
31
32 pythonRemoveDeps = [ "argparse" ];
33
34 pythonRelaxDeps = [ "pyparsing" ];
35
36 pythonImportsCheck = [ "robomachine" ];
37
38 meta = with lib; {
39 description = "Test data generator for Robot Framework";
40 homepage = "https://github.com/mkorpela/RoboMachine";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ bjornfor ];
43 };
44}