Skip to content

Commit e5d1376

Browse files
python3Packages.process-tests: optional ignore_case param to wait_for_strings
PR: ionelmc/python-process-tests#7 Co-authored-by: Kerstin <kerstin@erictapen.name>
1 parent 794e497 commit e5d1376

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

  • pkgs/development/python-modules/process-tests

pkgs/development/python-modules/process-tests/default.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
lib,
33
buildPythonPackage,
44
fetchPypi,
5+
fetchpatch,
56
setuptools,
67
}:
78

@@ -15,6 +16,14 @@ buildPythonPackage rec {
1516
hash = "sha256-5dV96nFhJR6RytuEvz7MhSdfsSH9R45Xn4AHd7HUJL0=";
1617
};
1718

19+
patches = [
20+
(fetchpatch {
21+
# Add optional ignore_case param to wait_for_strings
22+
url = "https://github.com/ionelmc/python-process-tests/commit/236c3e83722a36eddb4abb111a2fcceb49cc9ab7.patch";
23+
hash = "sha256-LbLaDXHbywvsq++lklNiLw8u0USuiEpuxzpNMhXBWtE=";
24+
})
25+
];
26+
1827
nativeBuildInputs = [ setuptools ];
1928

2029
# No tests

0 commit comments

Comments
 (0)