summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2019-12-26 17:03:24 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2019-12-26 17:05:10 +0000
commitb9fafdc475467ea0432a816b7e180a51c0ece8fa (patch)
treec2b8e60d50653b38c0b2e9d2394449e55d4b0c47
parent1e00a975771e44d113259e822947ca2028c18815 (diff)
downloadnixpkgs-b9fafdc475467ea0432a816b7e180a51c0ece8fa.tar
nixpkgs-b9fafdc475467ea0432a816b7e180a51c0ece8fa.tar.gz
nixpkgs-b9fafdc475467ea0432a816b7e180a51c0ece8fa.tar.bz2
nixpkgs-b9fafdc475467ea0432a816b7e180a51c0ece8fa.tar.lz
nixpkgs-b9fafdc475467ea0432a816b7e180a51c0ece8fa.tar.xz
nixpkgs-b9fafdc475467ea0432a816b7e180a51c0ece8fa.tar.zst
nixpkgs-b9fafdc475467ea0432a816b7e180a51c0ece8fa.zip
Python: Add missing setuptools dependency to branca
-rw-r--r--pkgs/development/python-modules/branca/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/branca/default.nix b/pkgs/development/python-modules/branca/default.nix
index c81233045c0..447a5230c7f 100644
--- a/pkgs/development/python-modules/branca/default.nix
+++ b/pkgs/development/python-modules/branca/default.nix
@@ -5,6 +5,7 @@
 , jinja2
 , selenium
 , six
+, setuptools
 }:
 
 buildPythonPackage rec {
@@ -17,7 +18,7 @@ buildPythonPackage rec {
   };
 
   checkInputs = [ pytest selenium ];
-  propagatedBuildInputs = [ jinja2 six ];
+  propagatedBuildInputs = [ jinja2 six setuptools ];
 
   # Seems to require a browser
   doCheck = false;