summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMarkus Hauck <markus1189@gmail.com>2017-12-21 12:12:45 +0100
committergnidorah <gnidorah@users.noreply.github.com>2017-12-26 21:33:08 +0300
commit21d51ece1b9b2e57e5fed610b63069cde8841a7d (patch)
tree4c1d9fdf85968c779be98054af09f8e7e9bbad9d /pkgs/tools
parentbac2d913d3f6eae1c97b40b04599ed4b0de05446 (diff)
downloadnixlib-21d51ece1b9b2e57e5fed610b63069cde8841a7d.tar
nixlib-21d51ece1b9b2e57e5fed610b63069cde8841a7d.tar.gz
nixlib-21d51ece1b9b2e57e5fed610b63069cde8841a7d.tar.bz2
nixlib-21d51ece1b9b2e57e5fed610b63069cde8841a7d.tar.lz
nixlib-21d51ece1b9b2e57e5fed610b63069cde8841a7d.tar.xz
nixlib-21d51ece1b9b2e57e5fed610b63069cde8841a7d.tar.zst
nixlib-21d51ece1b9b2e57e5fed610b63069cde8841a7d.zip
odpdown: add `checkInputs`
Related #32244
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/typesetting/odpdown/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/odpdown/default.nix b/pkgs/tools/typesetting/odpdown/default.nix
index 140784fa9369..c53e8573c90f 100644
--- a/pkgs/tools/typesetting/odpdown/default.nix
+++ b/pkgs/tools/typesetting/odpdown/default.nix
@@ -12,6 +12,10 @@ pythonPackages.buildPythonApplication rec {
 
   propagatedBuildInputs = with pythonPackages; [ libreoffice lpod lxml mistune pillow pygments ];
 
+  checkInputs = with pythonPackages; [
+    nose
+  ];
+
   meta = with stdenv.lib; {
     homepage = https://github.com/thorstenb/odpdown;
     repositories.git = https://github.com/thorstenb/odpdown.git;