about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fb-re2
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-02-20 20:32:04 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-02-20 20:32:04 +0100
commiteb22e4c775a9cbed876bfc743a59cc314f11b75b (patch)
tree75e3c3b0eb2f337701efec12aa8ccbac14454780 /pkgs/development/python-modules/fb-re2
parentc01276654e900cc5eabfb689fc0728316314b6c7 (diff)
python.pkgs.fb-re2: no tests in tarball
Diffstat (limited to 'pkgs/development/python-modules/fb-re2')
-rw-r--r--pkgs/development/python-modules/fb-re2/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/fb-re2/default.nix b/pkgs/development/python-modules/fb-re2/default.nix
index 0cdfd287647f8..40a1d759c1279 100644
--- a/pkgs/development/python-modules/fb-re2/default.nix
+++ b/pkgs/development/python-modules/fb-re2/default.nix
@@ -16,10 +16,8 @@ buildPythonPackage rec {
 
   buildInputs = [ re2 ];
 
-  checkInputs = [ pytest ];
-  checkPhase = ''
-    py.test
-  '';
+  # no tests in PyPI tarball
+  doCheck = false;
 
   meta = {
     description = "Python wrapper for Google's RE2";