depot/third_party/nixpkgs/pkgs/development/python-modules/robotsuite/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

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