about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/top-level/python-packages.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 66dbdcd611dd..1777dbad6367 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -26043,8 +26043,15 @@ in {
       sha256 = "14m13xa5sc7iqq2j1wsd2klcwaihqlhz2l9lmn92dks2yc8hplcr";
     };
 
+    buildInputs = with self; [ nose jinja2 mock pytest ];
     propagatedBuildInputs = with self; [ pyyaml ];
 
+    doCheck = false;
+
+    checkPhase = ''
+      py.test
+    '';
+
     meta = {
       description = "Media asset management for Python, with glue code for various web frameworks";
       homepage = "http://github.com/miracle2k/webassets/";