From f67392cbca551e62da7917260ad852c212d236a0 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 14 Aug 2013 18:50:47 +0200 Subject: [PATCH] paramiko: Correctly call the test suite. Using setup.py, the test suite isn't run at all, because it's not referenced there. So let's call it directly. Signed-off-by: aszlig --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f3ae83a682e2..4ee2c935fa0a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3619,6 +3619,8 @@ pythonPackages = modules // import ./python-packages-generated.nix { propagatedBuildInputs = [ pycrypto ]; + checkPhase = "python test.py"; + meta = { homepage = "http://www.lag.net/paramiko/"; description = "SSH2 protocol for python";