b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
37 lines
622 B
Nix
37 lines
622 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, unittest2
|
|
, lxml
|
|
, robotframework
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "robotsuite";
|
|
version = "2.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-iugVKUPl6HTTO8K1EbSqAk1fl/fsEPoOcsOnnAgcEas=";
|
|
};
|
|
|
|
buildInputs = [
|
|
unittest2
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
robotframework
|
|
lxml
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python unittest test suite for Robot Framework";
|
|
homepage = "https://github.com/collective/robotsuite/";
|
|
license = licenses.gpl3Only;
|
|
};
|
|
}
|