python312Packages.robotframework-seleniumlibrary: 6.6.1 -> 6.7.0 (#374665)

This commit is contained in:
Robert Schütz
2025-01-20 18:12:13 -08:00
committed by GitHub
5 changed files with 42 additions and 2 deletions
@@ -55,6 +55,7 @@ buildPythonPackage rec {
];
disabledTests = [
"test_preceding_whitespace"
# Tests expect paths below ApprovalTests.Python directory
"test_received_filename"
"test_pytest_namer"
@@ -10,6 +10,7 @@
# propagates
distutils,
pyyaml,
standard-pipes,
# optionals
boto3,
@@ -46,6 +47,7 @@ buildPythonPackage rec {
dependencies = [
distutils
pyyaml
standard-pipes
];
optional-dependencies = {
@@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "robotframework-seleniumlibrary";
version = "6.6.1";
version = "6.7.0";
pyproject = true;
# no tests included in PyPI tarball
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "robotframework";
repo = "SeleniumLibrary";
tag = "v${version}";
sha256 = "sha256-ULY0FH1RFQIlhS45LU3vUKi6urZJHiDgi6NdqU5tV2g=";
sha256 = "sha256-fiuqJLisCvsVrQfxTDC0koTK7BqkG2x7lnPkvBTZY9E=";
};
build-system = [ setuptools ];
@@ -0,0 +1,35 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "standard-pipes";
version = "3.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "youknowone";
repo = "python-deadlib";
tag = "v${version}";
hash = "sha256-vhGFTd1yXL4Frqli5D1GwOatwByDjvcP8sxgkdu6Jqg=";
};
sourceRoot = "${src.name}/pipes";
build-system = [ setuptools ];
pythonImportsCheck = [ "pipes" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Standard library pipes redistribution";
homepage = "https://github.com/youknowone/python-deadlib/tree/main/pipes";
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -15600,6 +15600,8 @@ self: super: with self; {
standard-imghdr = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-imghdr { } else null;
standard-pipes = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-pipes { } else null;
standard-telnetlib = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-telnetlib { } else null;
stone = callPackage ../development/python-modules/stone { };