python3.pkgs.lml: fix build

0.1.0 switched from nose to pytest. But it fails even with that.
This commit is contained in:
Jan Tojnar 2020-12-15 20:31:15 +01:00
parent 43acd21b06
commit f5525b73a2
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, nose , pytestCheckHook
, mock , mock
}: }:
@ -15,11 +15,12 @@ buildPythonPackage rec {
}; };
checkInputs = [ checkInputs = [
nose pytestCheckHook
mock mock
]; ];
checkPhase = "nosetests"; # Tests broken.
doCheck = false;
meta = { meta = {
description = "Load me later. A lazy plugin management system for Python"; description = "Load me later. A lazy plugin management system for Python";