Merge pull request #281260 from dotlambda/splinter-0.21.0

python311Packages.splinter: 0.20.1 -> 0.21.0
This commit is contained in:
Robert Schütz 2024-01-17 03:24:29 +01:00 committed by GitHub
commit 13d4b24227
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
, isPy27
, pythonOlder
, fetchFromGitHub
, setuptools
, urllib3
@ -15,9 +15,9 @@
buildPythonPackage rec {
pname = "splinter";
version = "0.20.1";
version = "0.21.0";
disabled = isPy27;
disabled = pythonOlder "3.8";
pyproject = true;
@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "cobrateam";
repo = "splinter";
rev = "refs/tags/${version}";
hash = "sha256-6oHcHIkqOr0aFNfCNjZpm4zIYuz2ov9drfCxSdjAg7o=";
hash = "sha256-PGGql8yI1YosoUBAyDoI/8k7s4sVYnXEV7eow3GHH88=";
};
nativeBuildInputs = [
@ -75,6 +75,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "splinter" ];
meta = with lib; {
changelog = "https://splinter.readthedocs.io/en/latest/news.html";
description = "Browser abstraction for web acceptance testing";
homepage = "https://github.com/cobrateam/splinter";
license = licenses.bsd3;