depot/third_party/nixpkgs/pkgs/development/python-modules/robotsuite/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

35 lines
615 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, lxml
, robotframework
, pytestCheckHook
, six
}:
buildPythonPackage rec {
pname = "robotsuite";
version = "2.3.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-sPmOoR5K+gMfyPk2QMbiDNmWPRcqKrsz6ZPBAKR/3XY=";
};
propagatedBuildInputs = [
robotframework
lxml
six
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Python unittest test suite for Robot Framework";
homepage = "https://github.com/collective/robotsuite/";
license = licenses.gpl3Only;
};
}