diff options
| author | Adson Cicilioti <eu@adsonagencia.com> | 2021-12-07 22:57:20 -0300 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-12-08 02:39:07 +0000 |
| commit | df0c6748909e5aff6bc6e10b33959890259e4a04 (patch) | |
| tree | 74fa00c2727597370102c5c171e6f497072ef37c | |
| parent | bibata-cursors-translucent: unstable-2019-09-13 -> 1.1.1 (diff) | |
| download | nixpkgs-df0c6748909e5aff6bc6e10b33959890259e4a04.tar.gz | |
clickgen: run tests with pytestCheckHook
(cherry picked from commit 2d91877c3778bdf8223ccd9899cc5f6c7cf13d56)
| -rw-r--r-- | pkgs/development/python-modules/clickgen/default.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/clickgen/default.nix b/pkgs/development/python-modules/clickgen/default.nix index 141fd4569b52..a85cee778b0b 100644 --- a/pkgs/development/python-modules/clickgen/default.nix +++ b/pkgs/development/python-modules/clickgen/default.nix @@ -6,6 +6,7 @@ , libXcursor , libpng , python +, pytestCheckHook }: buildPythonPackage rec { @@ -29,9 +30,7 @@ buildPythonPackage rec { install -m644 clickgen/xcursorgen.so $out/${python.sitePackages}/clickgen/xcursorgen.so ''; - # Tests fail with ${bitmap_error}. - # Application works normally if tests are disabled - doCheck = false; + checkInputs = [ pytestCheckHook ]; meta = with lib; { homepage = "https://github.com/ful1e5/clickgen"; |
