pythonPackages.splinter: fix build

Add six to propagatedBuildInputs.
Also enable tests and add dotlambda to maintainers.
This commit is contained in:
Robert Schütz 2021-04-10 13:57:17 +02:00
parent ecd2d63dfd
commit ecc1a0ff70

View file

@ -1,30 +1,50 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, selenium
, six
, flask
, coverage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "splinter";
version = "0.14.0";
src = fetchPypi {
inherit pname version;
sha256 = "459e39e7a9f7572db6f1cdb5fdc5ccfc6404f021dccb969ee6287be2386a40db";
src = fetchFromGitHub {
owner = "cobrateam";
repo = "splinter";
rev = version;
sha256 = "0480bqprv8581cvnc80ls91rz9780wvdnfw99zsw44hvy2yg15a6";
};
propagatedBuildInputs = [ selenium ];
propagatedBuildInputs = [
selenium
six
];
checkInputs = [ flask coverage ];
checkInputs = [
flask
pytestCheckHook
];
# No tests included
doCheck = false;
disabledTestPaths = [
"samples"
"tests/test_djangoclient.py"
"tests/test_flaskclient.py"
"tests/test_webdriver.py"
"tests/test_webdriver_chrome.py"
"tests/test_webdriver_firefox.py"
"tests/test_webdriver_remote.py"
"tests/test_zopetestbrowser.py"
];
meta = {
pythonImportsCheck = [ "splinter" ];
meta = with lib; {
description = "Browser abstraction for web acceptance testing";
homepage = "https://github.com/cobrateam/splinter";
license = lib.licenses.bsd3;
license = licenses.bsd3;
maintainers = with maintainers; [ dotlambda ];
};
}