add two necessary dependencies

This commit is contained in:
Jonathan Wilkins 2021-05-07 18:36:12 +01:00 committed by Jonathan Ringer
parent bd93086109
commit 32a245bed9

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, numpy, pytest }: { lib, buildPythonPackage, fetchFromGitHub, isPy3k, matplotlib, numpy, pytest, seaborn }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pycm"; pname = "pycm";
@ -20,7 +20,7 @@ buildPythonPackage rec {
''; '';
checkInputs = [ pytest ]; checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy ]; propagatedBuildInputs = [ matplotlib numpy seaborn ];
checkPhase = '' checkPhase = ''
pytest Test/ pytest Test/