about summary refs log tree commit diff
path: root/pkgs/development/python-modules/robomachine/default.nix
blob: 69ca0941df4d0f4185d0681f1964da5928ab013d (plain) (blame)
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
45
{
  stdenv,
  lib,
  allpairspy,
  buildPythonPackage,
  fetchPypi,
  pyparsing,
  robotframework,
  setuptools,
}:

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

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

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    pyparsing
    robotframework
    allpairspy
  ];

  pythonRemoveDeps = [ "argparse" ];

  pythonRelaxDeps = [ "pyparsing" ];

  pythonImportsCheck = [ "robomachine" ];

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