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
, 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";