Skip to content

Commit

Permalink
python312Packages.robotframework-seleniumlibrary: 6.6.1 -> 6.7.0 (#37…
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda authored Jan 21, 2025
2 parents 9588b84 + aee5b62 commit 252bfe3
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
1 change: 1 addition & 0 deletions pkgs/development/python-modules/approvaltests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ buildPythonPackage rec {
];

disabledTests = [
"test_preceding_whitespace"
# Tests expect paths below ApprovalTests.Python directory
"test_received_filename"
"test_pytest_namer"
Expand Down
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/mrjob/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# propagates
distutils,
pyyaml,
standard-pipes,

# optionals
boto3,
Expand Down Expand Up @@ -46,6 +47,7 @@ buildPythonPackage rec {
dependencies = [
distutils
pyyaml
standard-pipes
];

optional-dependencies = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@

buildPythonPackage rec {
pname = "robotframework-seleniumlibrary";
version = "6.6.1";
version = "6.7.0";
pyproject = true;

# no tests included in PyPI tarball
src = fetchFromGitHub {
owner = "robotframework";
repo = "SeleniumLibrary";
tag = "v${version}";
sha256 = "sha256-ULY0FH1RFQIlhS45LU3vUKi6urZJHiDgi6NdqU5tV2g=";
sha256 = "sha256-fiuqJLisCvsVrQfxTDC0koTK7BqkG2x7lnPkvBTZY9E=";
};

build-system = [ setuptools ];
Expand Down
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/standard-pipes/default.nix
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 252bfe3

Please sign in to comment.