depot/third_party/nixpkgs/pkgs/development/python-modules/robotsuite/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

34 lines
590 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, lxml
, robotframework
, pytestCheckHook
, six
}:
buildPythonPackage rec {
pname = "robotsuite";
version = "2.3.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-iugVKUPl6HTTO8K1EbSqAk1fl/fsEPoOcsOnnAgcEas=";
};
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;
};
}