python3Packages.pycm: clean up checkPhase
This commit is contained in:
parent
0f783d556f
commit
18c1b519b3
1 changed files with 4 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, matplotlib, numpy, pytest, seaborn }:
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, matplotlib, numpy, pytestCheckHook, seaborn }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycm";
|
||||
|
@ -16,16 +16,14 @@ buildPythonPackage rec {
|
|||
# remove a trivial dependency on the author's `art` Python ASCII art library
|
||||
postPatch = ''
|
||||
rm pycm/__main__.py
|
||||
rm Otherfiles/notebook_check.py # also depends on python3Packages.notebook
|
||||
substituteInPlace setup.py --replace '=get_requires()' '=[]'
|
||||
'';
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
disabledTests = [ "pycm.pycm_compare.Compare" ]; # output formatting error
|
||||
propagatedBuildInputs = [ matplotlib numpy seaborn ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest Test/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multiclass confusion matrix library";
|
||||
homepage = "https://pycm.ir";
|
||||
|
|
Loading…
Reference in a new issue