depot/third_party/nixpkgs/pkgs/development/python-modules/robomachine/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

51 lines
860 B
Nix

{ stdenv
, lib
, allpairspy
, buildPythonPackage
, fetchPypi
, pyparsing
, pythonRelaxDepsHook
, robotframework
, setuptools
}:
buildPythonPackage rec {
pname = "RoboMachine";
version = "0.10.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-XrxHaV9U7mZ2TvySHGm6qw1AsoukppzwPq4wufIjL+k=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
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 ];
};
}