python311Packages.splinter: 0.20.1 -> 0.21.0

Diff: https://github.com/cobrateam/splinter/compare/refs/tags/0.20.1...0.21.0

Changelog: https://splinter.readthedocs.io/en/stable/news/0.21.0.html
This commit is contained in:
Robert Schütz
2024-01-15 20:35:10 -08:00
parent 9b19f5e77d
commit 812a5c14b9
@@ -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;