summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/robomachine/default.nix
blob: 4fb5e5d17ee99d62a9eb539dc2fa9576ad9428a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
  lib,
  allpairspy,
  buildPythonPackage,
  fetchPypi,
  pyparsing,
  robotframework,
  setuptools,
}:

buildPythonPackage rec {
  pname = "robomachine";
  version = "0.10.0";
  pyproject = true;

  src = fetchPypi {
    pname = "RoboMachine";
    inherit version;
    hash = "sha256-XrxHaV9U7mZ2TvySHGm6qw1AsoukppzwPq4wufIjL+k=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    pyparsing
    robotframework
    allpairspy
  ];

  pythonRemoveDeps = [ "argparse" ];

  pythonRelaxDeps = [ "pyparsing" ];

  pythonImportsCheck = [ "robomachine" ];

  meta = {
    description = "Test data generator for Robot Framework";
    homepage = "https://github.com/mkorpela/RoboMachine";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ bjornfor ];
  };
}