summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdson Cicilioti <eu@adsonagencia.com>2021-12-07 22:57:20 -0300
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-12-08 02:39:07 +0000
commitdf0c6748909e5aff6bc6e10b33959890259e4a04 (patch)
tree74fa00c2727597370102c5c171e6f497072ef37c
parentbibata-cursors-translucent: unstable-2019-09-13 -> 1.1.1 (diff)
downloadnixpkgs-df0c6748909e5aff6bc6e10b33959890259e4a04.tar.gz
clickgen: run tests with pytestCheckHook
(cherry picked from commit 2d91877c3778bdf8223ccd9899cc5f6c7cf13d56)
-rw-r--r--pkgs/development/python-modules/clickgen/default.nix5
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";