From 5165ecb7f6b25e7368ec57ccb06da8127dc108db Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Sat, 10 Nov 2018 23:13:04 +0800 Subject: [PATCH] remove tests PyPI archive does not contain tests --- pkgs/development/python-modules/gin-config/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gin-config/default.nix b/pkgs/development/python-modules/gin-config/default.nix index 49311fae9e8..97388c661fe 100644 --- a/pkgs/development/python-modules/gin-config/default.nix +++ b/pkgs/development/python-modules/gin-config/default.nix @@ -4,7 +4,6 @@ , six , enum34 , absl-py -, tensorflow }: buildPythonPackage rec { @@ -18,7 +17,9 @@ buildPythonPackage rec { }; propogatedBuildInputs = [ six enum34 ]; - checkInputs = [ absl-py tensorflow ]; + + # PyPI archive does not ship with tests + doCheck= false; meta = with lib; { homepage = https://github.com/google/gin-config;