···1-{ lib, buildFishPlugin, fetchFromGitHub, git, fishtape }:
23buildFishPlugin rec {
4 pname = "pure";
···11 hash = "sha256-O8rC2uCuM3xUQPRap7XqyyAvO77hP+sqNM4mEQ7pZkw=";
12 };
1314- # The tests aren't passing either on the project's CI.
15- # The release notes of the program for v3.5.0 say:
16- # > Tests are going crazy at the moment, should be fixed once fishtape 3.0
17- # > is released, and we do the switch.
18- # This is tracked in https://github.com/pure-fish/pure/issues/272
19- # and https://github.com/pure-fish/pure/pull/275.
20- doCheck = false;
21-22 nativeCheckInputs = [ git ];
23- checkPlugins = [ fishtape ];
24 checkPhase = ''
25- # https://github.com/rafaelrinaldi/pure/issues/264
26- rm tests/_pure_string_width.test.fish
2728 fishtape tests/*.test.fish
29 '';