Skip to content

Commit

Permalink
add two necessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
evalexpr authored and Jonathan Ringer committed May 7, 2021
1 parent bd93086 commit 32a245b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pycm/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, numpy, pytest }:
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, matplotlib, numpy, pytest, seaborn }:

buildPythonPackage rec {
pname = "pycm";
Expand All @@ -20,7 +20,7 @@ buildPythonPackage rec {
'';

checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy ];
propagatedBuildInputs = [ matplotlib numpy seaborn ];

checkPhase = ''
pytest Test/
Expand Down

0 comments on commit 32a245b

Please sign in to comment.