depot/third_party/nixpkgs/pkgs/development/python-modules/robomachine/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

44 lines
817 B
Nix

{
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 ];
};
}