summary refs log tree commit diff
path: root/pkgs/development/python-modules/jedi
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-14 19:47:07 -0400
committerSamuel Leathers <sam@appliedtrust.com>2017-09-14 19:47:07 -0400
commit0d9410a57330ce3c28c8844cea7e01345ee0fd38 (patch)
treecef2ab9f1684ad21f4fbc338b408de4a0b9a5078 /pkgs/development/python-modules/jedi
parent94454384c2863a940e7e46b1c53f13ba50db90fd (diff)
downloadnixpkgs-0d9410a57330ce3c28c8844cea7e01345ee0fd38.tar
nixpkgs-0d9410a57330ce3c28c8844cea7e01345ee0fd38.tar.gz
nixpkgs-0d9410a57330ce3c28c8844cea7e01345ee0fd38.tar.bz2
nixpkgs-0d9410a57330ce3c28c8844cea7e01345ee0fd38.tar.lz
nixpkgs-0d9410a57330ce3c28c8844cea7e01345ee0fd38.tar.xz
nixpkgs-0d9410a57330ce3c28c8844cea7e01345ee0fd38.tar.zst
nixpkgs-0d9410a57330ce3c28c8844cea7e01345ee0fd38.zip
jedi: disable tests
Diffstat (limited to 'pkgs/development/python-modules/jedi')
-rw-r--r--pkgs/development/python-modules/jedi/default.nix19
1 files changed, 7 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/jedi/default.nix b/pkgs/development/python-modules/jedi/default.nix
index 1199435c7d2..5d904ee311f 100644
--- a/pkgs/development/python-modules/jedi/default.nix
+++ b/pkgs/development/python-modules/jedi/default.nix
@@ -1,9 +1,4 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytest
-, glibcLocales
-}:
+{ stdenv, buildPythonPackage, fetchPypi, pytest, glibcLocales, tox, pytestcov }:
 
 buildPythonPackage rec {
   pname = "jedi";
@@ -15,19 +10,19 @@ buildPythonPackage rec {
     sha256 = "7abb618cac6470ebbd142e59c23daec5e6e063bfcecc8a43a037d2ab57276f4e";
   };
 
-  checkInputs = [ pytest glibcLocales ];
+  checkInputs = [ pytest glibcLocales tox pytestcov ];
 
   checkPhase = ''
     LC_ALL="en_US.UTF-8" py.test test
   '';
 
-  # 7 failed
-  #doCheck = false;
+  # tox required for tests: https://github.com/davidhalter/jedi/issues/808
+  doCheck = false;
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://github.com/davidhalter/jedi;
     description = "An autocompletion tool for Python that can be used for text editors";
-    license = lib.licenses.lgpl3Plus;
-    maintainers = with lib.maintainers; [ garbas ];
+    license = licenses.lgpl3Plus;
+    maintainers = with maintainers; [ garbas ];
   };
 }