add two necessary dependencies
This commit is contained in:
parent
bd93086109
commit
32a245bed9
|
@ -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/
|
||||||
|
|
Loading…
Reference in New Issue