pythonPackages.munch: add missing pbr dependency

This commit is contained in:
Jonathan Ringer 2019-12-21 02:05:32 -08:00 committed by Frederik Rietdijk
parent a792ed1e2b
commit cb740cbe81

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, six , six
, pbr
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,7 +14,7 @@ buildPythonPackage rec {
sha256 = "2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2"; sha256 = "2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2";
}; };
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six pbr ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;