add missing propagatedBuildInputs to bibtexparser

This commit is contained in:
Alex Brandt 2018-03-12 15:19:36 -05:00
parent df9148c2aa
commit 0f5e8a360d

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, future, pyparsing
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,6 +14,8 @@ buildPythonPackage rec {
sha256 = "cc41cdd8332c2bf44b97daf1f135f4f267c3b744c33976655cd270b66f964c0a"; sha256 = "cc41cdd8332c2bf44b97daf1f135f4f267c3b744c33976655cd270b66f964c0a";
}; };
propagatedBuildInputs = [ future pyparsing ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;