python.pkgs.billiard: add psutil to propagatedBuildInputs

This commit is contained in:
Robert Schütz 2019-02-14 23:58:11 +01:00 committed by Frederik Rietdijk
parent e70cf2cd44
commit 8dcc98e80b

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case }:
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case, psutil }:
buildPythonPackage rec {
pname = "billiard";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "756bf323f250db8bf88462cd042c992ba60d8f5e07fc5636c24ba7d6f4261d84";
};
buildInputs = [ pytest case ];
checkInputs = [ pytest case psutil ];
meta = with stdenv.lib; {
homepage = https://github.com/celery/billiard;