summary refs log tree commit diff
path: root/pkgs/development/python-modules/lml
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-12-15 20:31:15 +0100
committerJan Tojnar <jtojnar@gmail.com>2020-12-15 20:32:11 +0100
commitf5525b73a292de82f9e669a920aa3841d6e38826 (patch)
tree3232722a8dc5a5e3b207433589041fa69a0adedf /pkgs/development/python-modules/lml
parent43acd21b06df2f0fcd38348f4b8cf382a25a3f3c (diff)
python3.pkgs.lml: fix build
0.1.0 switched from nose to pytest. But it fails even with that.
Diffstat (limited to 'pkgs/development/python-modules/lml')
-rw-r--r--pkgs/development/python-modules/lml/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/lml/default.nix b/pkgs/development/python-modules/lml/default.nix
index cdf1d46af73e3..f426d3dd7b4c3 100644
--- a/pkgs/development/python-modules/lml/default.nix
+++ b/pkgs/development/python-modules/lml/default.nix
@@ -1,7 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, nose
+, pytestCheckHook
 , mock
 }:
 
@@ -15,11 +15,12 @@ buildPythonPackage rec {
   };
 
   checkInputs = [
-    nose
+    pytestCheckHook
     mock
   ];
 
-  checkPhase = "nosetests";
+  # Tests broken.
+  doCheck = false;
 
   meta = {
     description = "Load me later. A lazy plugin management system for Python";