summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-11-05 14:19:23 +0100
committerJonathan Ringer <jonringer117@gmail.com>2020-11-05 15:47:09 -0800
commit0259315d055a5c06d3b77dd353c6f795df611d39 (patch)
tree7c77704120183c40343eeb807a58b1d3653909e7
parent1849bc57be30a3c8c9ca8b520950208a1f5f1daf (diff)
downloadnixpkgs-0259315d055a5c06d3b77dd353c6f795df611d39.tar
nixpkgs-0259315d055a5c06d3b77dd353c6f795df611d39.tar.gz
nixpkgs-0259315d055a5c06d3b77dd353c6f795df611d39.tar.bz2
nixpkgs-0259315d055a5c06d3b77dd353c6f795df611d39.tar.lz
nixpkgs-0259315d055a5c06d3b77dd353c6f795df611d39.tar.xz
nixpkgs-0259315d055a5c06d3b77dd353c6f795df611d39.tar.zst
nixpkgs-0259315d055a5c06d3b77dd353c6f795df611d39.zip
python3.pkgs.genshi: fix build
-rw-r--r--pkgs/development/python-modules/genshi/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/genshi/default.nix b/pkgs/development/python-modules/genshi/default.nix
index 724983f6955..a0033eb658b 100644
--- a/pkgs/development/python-modules/genshi/default.nix
+++ b/pkgs/development/python-modules/genshi/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchPypi
 , setuptools
+, six
 }:
 
 buildPythonPackage rec {
@@ -17,7 +18,9 @@ buildPythonPackage rec {
   # FAIL: test_sanitize_remove_src_javascript (genshi.filters.tests.html.HTMLSanitizerTestCase)
   doCheck = false;
 
-  buildInputs = [ setuptools ];
+  propagatedBuildInputs = [
+    setuptools six
+  ];
 
   meta = with stdenv.lib; {
     description = "Python components for parsing HTML, XML and other textual content";