From cb69ea969b3bc2c48c481524e7b6b2b458f3aa62 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 23 Jan 2016 12:32:06 +0100 Subject: [PATCH] pythonPackages.six: use correct test runner --- pkgs/top-level/python-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 09dc0e9c7fbe..72e9cc2fa50c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18848,6 +18848,12 @@ in modules // { sha256 = "0snmb8xffb3vsma0z67i0h0w2g2dy0p3gsgh9gi4i0kgc5l8spqh"; }; + buildInputs = with self; [ pytest ]; + + checkPhase = '' + py.test test_six.py + ''; + meta = { description = "A Python 2 and 3 compatibility library"; homepage = http://pypi.python.org/pypi/six/;