ce641f4048
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
52 lines
1 KiB
Nix
52 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, selenium
|
|
, six
|
|
, flask
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "splinter";
|
|
version = "0.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cobrateam";
|
|
repo = "splinter";
|
|
rev = version;
|
|
sha256 = "sha256-b6zncEAPtKgBPLFRsCSGeBqiD4A/mHEhjQaEIsefc28=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
selenium
|
|
six
|
|
];
|
|
|
|
checkInputs = [
|
|
flask
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"samples"
|
|
"tests/test_djangoclient.py"
|
|
"tests/test_flaskclient.py"
|
|
"tests/test_popups.py"
|
|
"tests/test_webdriver.py"
|
|
"tests/test_webdriver_chrome.py"
|
|
"tests/test_webdriver_edge_chromium.py"
|
|
"tests/test_webdriver_firefox.py"
|
|
"tests/test_webdriver_remote.py"
|
|
"tests/test_zopetestbrowser.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "splinter" ];
|
|
|
|
meta = with lib; {
|
|
description = "Browser abstraction for web acceptance testing";
|
|
homepage = "https://github.com/cobrateam/splinter";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|