summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-09-01 11:57:31 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-09-04 19:18:13 +0200
commitb75ea627c6f290c0764d5ab8103dfd82ca309caa (patch)
tree0e3c985e82a68a51adebd070561ea7a287e321e8 /pkgs/development/python-modules
parent20a4a4b5933db55b769d48c532b6bf906738b821 (diff)
downloadnixpkgs-b75ea627c6f290c0764d5ab8103dfd82ca309caa.tar
nixpkgs-b75ea627c6f290c0764d5ab8103dfd82ca309caa.tar.gz
nixpkgs-b75ea627c6f290c0764d5ab8103dfd82ca309caa.tar.bz2
nixpkgs-b75ea627c6f290c0764d5ab8103dfd82ca309caa.tar.lz
nixpkgs-b75ea627c6f290c0764d5ab8103dfd82ca309caa.tar.xz
nixpkgs-b75ea627c6f290c0764d5ab8103dfd82ca309caa.tar.zst
nixpkgs-b75ea627c6f290c0764d5ab8103dfd82ca309caa.zip
pythonPackages.autobahn: run hooks
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/autobahn/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/autobahn/default.nix b/pkgs/development/python-modules/autobahn/default.nix
index 87a337a154d..04aa9411247 100644
--- a/pkgs/development/python-modules/autobahn/default.nix
+++ b/pkgs/development/python-modules/autobahn/default.nix
@@ -21,7 +21,9 @@ buildPythonPackage rec {
     (stdenv.lib.optionals (!isPy3k) [ trollius futures ]);
 
   checkPhase = ''
+    runHook preCheck
     USE_TWISTED=true py.test $out
+    runHook postCheck
   '';
 
   meta = with stdenv.lib; {