about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Brandt <alunduil@alunduil.com>2018-03-12 15:19:36 -0500
committerAlex Brandt <alunduil@alunduil.com>2018-03-12 15:19:36 -0500
commit0f5e8a360d3d90c57bbab7aec18862bf32903e72 (patch)
treedde60a373d99ba3619d22e50c7d6ce4df69508dc
parentdf9148c2aa2f94fdacbebc8e6dc691a4abb873a3 (diff)
downloadnixlib-0f5e8a360d3d90c57bbab7aec18862bf32903e72.tar
nixlib-0f5e8a360d3d90c57bbab7aec18862bf32903e72.tar.gz
nixlib-0f5e8a360d3d90c57bbab7aec18862bf32903e72.tar.bz2
nixlib-0f5e8a360d3d90c57bbab7aec18862bf32903e72.tar.lz
nixlib-0f5e8a360d3d90c57bbab7aec18862bf32903e72.tar.xz
nixlib-0f5e8a360d3d90c57bbab7aec18862bf32903e72.tar.zst
nixlib-0f5e8a360d3d90c57bbab7aec18862bf32903e72.zip
add missing propagatedBuildInputs to bibtexparser
-rw-r--r--pkgs/development/python-modules/bibtexparser/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/bibtexparser/default.nix b/pkgs/development/python-modules/bibtexparser/default.nix
index 50e389a9e14b..521ae1b2fee3 100644
--- a/pkgs/development/python-modules/bibtexparser/default.nix
+++ b/pkgs/development/python-modules/bibtexparser/default.nix
@@ -1,6 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, future, pyparsing
 }:
 
 buildPythonPackage rec {
@@ -13,6 +14,8 @@ buildPythonPackage rec {
     sha256 = "cc41cdd8332c2bf44b97daf1f135f4f267c3b744c33976655cd270b66f964c0a";
   };
 
+  propagatedBuildInputs = [ future pyparsing ];
+
   # No tests in archive
   doCheck = false;