summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-editor
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-08-25 10:34:58 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-08-25 19:36:16 +0200
commit1e4029fa0a36e9948c3df7afd276e9651cea1a85 (patch)
tree9eff319d6bdf95c7eb0cac41c3caf0b4c28f6a26 /pkgs/development/python-modules/python-editor
parent84adeffc6dd9f8ca2510ce51b53559946feeebf2 (diff)
downloadnixlib-1e4029fa0a36e9948c3df7afd276e9651cea1a85.tar
nixlib-1e4029fa0a36e9948c3df7afd276e9651cea1a85.tar.gz
nixlib-1e4029fa0a36e9948c3df7afd276e9651cea1a85.tar.bz2
nixlib-1e4029fa0a36e9948c3df7afd276e9651cea1a85.tar.lz
nixlib-1e4029fa0a36e9948c3df7afd276e9651cea1a85.tar.xz
nixlib-1e4029fa0a36e9948c3df7afd276e9651cea1a85.tar.zst
nixlib-1e4029fa0a36e9948c3df7afd276e9651cea1a85.zip
python.pkgs.python-editor: fix by disabling tests
Diffstat (limited to 'pkgs/development/python-modules/python-editor')
-rw-r--r--pkgs/development/python-modules/python-editor/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-editor/default.nix b/pkgs/development/python-modules/python-editor/default.nix
index bb64ff0e2417..d2941e4c572b 100644
--- a/pkgs/development/python-modules/python-editor/default.nix
+++ b/pkgs/development/python-modules/python-editor/default.nix
@@ -10,8 +10,12 @@ buildPythonPackage rec {
     sha256 = "a3c066acee22a1c94f63938341d4fb374e3fdd69366ed6603d7b24bed1efc565";
   };
 
+  # No proper tests
+  doCheck = false;
+
   meta = with stdenv.lib; {
     description = "A library that provides the `editor` module for programmatically";
     homepage = https://github.com/fmoo/python-editor;
+    license = licenses.asl20;
   };
 }