Merge pull request #281260 from dotlambda/splinter-0.21.0

python311Packages.splinter: 0.20.1 -> 0.21.0

authored by Robert Schütz and committed by GitHub 13d4b242 58c697fb

+5 -4
+5 -4
pkgs/development/python-modules/splinter/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , isPy27 3 + , pythonOlder 4 4 , fetchFromGitHub 5 5 , setuptools 6 6 , urllib3 ··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "splinter"; 18 - version = "0.20.1"; 18 + version = "0.21.0"; 19 19 20 - disabled = isPy27; 20 + disabled = pythonOlder "3.8"; 21 21 22 22 pyproject = true; 23 23 ··· 25 25 owner = "cobrateam"; 26 26 repo = "splinter"; 27 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-6oHcHIkqOr0aFNfCNjZpm4zIYuz2ov9drfCxSdjAg7o="; 28 + hash = "sha256-PGGql8yI1YosoUBAyDoI/8k7s4sVYnXEV7eow3GHH88="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ ··· 75 75 pythonImportsCheck = [ "splinter" ]; 76 76 77 77 meta = with lib; { 78 + changelog = "https://splinter.readthedocs.io/en/latest/news.html"; 78 79 description = "Browser abstraction for web acceptance testing"; 79 80 homepage = "https://github.com/cobrateam/splinter"; 80 81 license = licenses.bsd3;