Skip to content

Commit

Permalink
python3Packages.process-tests: optional ignore_case param to wait_for…
Browse files Browse the repository at this point in the history
…_strings

PR: ionelmc/python-process-tests#7

Co-authored-by: Kerstin <kerstin@erictapen.name>
  • Loading branch information
2 people authored and Gavin John committed Jul 4, 2024
1 parent 94228bd commit 85a38e7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/development/python-modules/process-tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
setuptools,
}:

Expand All @@ -15,6 +16,14 @@ buildPythonPackage rec {
hash = "sha256-5dV96nFhJR6RytuEvz7MhSdfsSH9R45Xn4AHd7HUJL0=";
};

patches = [
(fetchpatch {
# Add optional ignore_case param to wait_for_strings
url = "https://github.com/ionelmc/python-process-tests/commit/236c3e83722a36eddb4abb111a2fcceb49cc9ab7.patch";
hash = "sha256-LbLaDXHbywvsq++lklNiLw8u0USuiEpuxzpNMhXBWtE=";
})
];

nativeBuildInputs = [ setuptools ];

# No tests
Expand Down

0 comments on commit 85a38e7

Please sign in to comment.