File tree Expand file tree Collapse file tree 5 files changed +42
-2
lines changed
development/python-modules
robotframework-seleniumlibrary Expand file tree Collapse file tree 5 files changed +42
-2
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ buildPythonPackage rec {
5555 ] ;
5656
5757 disabledTests = [
58+ "test_preceding_whitespace"
5859 # Tests expect paths below ApprovalTests.Python directory
5960 "test_received_filename"
6061 "test_pytest_namer"
Original file line number Diff line number Diff line change 1010 # propagates
1111 distutils ,
1212 pyyaml ,
13+ standard-pipes ,
1314
1415 # optionals
1516 boto3 ,
@@ -46,6 +47,7 @@ buildPythonPackage rec {
4647 dependencies = [
4748 distutils
4849 pyyaml
50+ standard-pipes
4951 ] ;
5052
5153 optional-dependencies = {
Original file line number Diff line number Diff line change 1515
1616buildPythonPackage rec {
1717 pname = "robotframework-seleniumlibrary" ;
18- version = "6.6.1 " ;
18+ version = "6.7.0 " ;
1919 pyproject = true ;
2020
2121 # no tests included in PyPI tarball
2222 src = fetchFromGitHub {
2323 owner = "robotframework" ;
2424 repo = "SeleniumLibrary" ;
2525 tag = "v${ version } " ;
26- sha256 = "sha256-ULY0FH1RFQIlhS45LU3vUKi6urZJHiDgi6NdqU5tV2g =" ;
26+ sha256 = "sha256-fiuqJLisCvsVrQfxTDC0koTK7BqkG2x7lnPkvBTZY9E =" ;
2727 } ;
2828
2929 build-system = [ setuptools ] ;
Original file line number Diff line number Diff line change 1+ {
2+ buildPythonPackage ,
3+ fetchFromGitHub ,
4+ lib ,
5+ pytestCheckHook ,
6+ setuptools ,
7+ } :
8+
9+ buildPythonPackage rec {
10+ pname = "standard-pipes" ;
11+ version = "3.13.0" ;
12+ pyproject = true ;
13+
14+ src = fetchFromGitHub {
15+ owner = "youknowone" ;
16+ repo = "python-deadlib" ;
17+ tag = "v${ version } " ;
18+ hash = "sha256-vhGFTd1yXL4Frqli5D1GwOatwByDjvcP8sxgkdu6Jqg=" ;
19+ } ;
20+
21+ sourceRoot = "${ src . name } /pipes" ;
22+
23+ build-system = [ setuptools ] ;
24+
25+ pythonImportsCheck = [ "pipes" ] ;
26+
27+ nativeCheckInputs = [ pytestCheckHook ] ;
28+
29+ meta = {
30+ description = "Standard library pipes redistribution" ;
31+ homepage = "https://github.com/youknowone/python-deadlib/tree/main/pipes" ;
32+ license = lib . licenses . psfl ;
33+ maintainers = with lib . maintainers ; [ dotlambda ] ;
34+ } ;
35+ }
Original file line number Diff line number Diff line change @@ -15600,6 +15600,8 @@ self: super: with self; {
1560015600
1560115601 standard-imghdr = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-imghdr { } else null;
1560215602
15603+ standard-pipes = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-pipes { } else null;
15604+
1560315605 standard-telnetlib = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-telnetlib { } else null;
1560415606
1560515607 stone = callPackage ../development/python-modules/stone { };
You can’t perform that action at this time.
0 commit comments