summary refs log tree commit diff
path: root/pkgs/development/python-modules/arelle
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-14 14:28:29 -0400
committerSamuel Leathers <sam@appliedtrust.com>2017-09-14 16:54:28 -0400
commit6ac283b185b3d164b5dcc912fc4b20e7619aeb11 (patch)
tree0d4bccf9736d18b5606ff19cb9c8b48eeb9a13ea /pkgs/development/python-modules/arelle
parentfad96f62d0380336856bcf8a6328ad905e96dbef (diff)
downloadnixpkgs-6ac283b185b3d164b5dcc912fc4b20e7619aeb11.tar
nixpkgs-6ac283b185b3d164b5dcc912fc4b20e7619aeb11.tar.gz
nixpkgs-6ac283b185b3d164b5dcc912fc4b20e7619aeb11.tar.bz2
nixpkgs-6ac283b185b3d164b5dcc912fc4b20e7619aeb11.tar.lz
nixpkgs-6ac283b185b3d164b5dcc912fc4b20e7619aeb11.tar.xz
nixpkgs-6ac283b185b3d164b5dcc912fc4b20e7619aeb11.tar.zst
nixpkgs-6ac283b185b3d164b5dcc912fc4b20e7619aeb11.zip
arelle: add py3to2 as a buildInput
Diffstat (limited to 'pkgs/development/python-modules/arelle')
-rw-r--r--pkgs/development/python-modules/arelle/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/arelle/default.nix b/pkgs/development/python-modules/arelle/default.nix
index 32c020961f2..2cf14192d09 100644
--- a/pkgs/development/python-modules/arelle/default.nix
+++ b/pkgs/development/python-modules/arelle/default.nix
@@ -1,7 +1,7 @@
 { gui ? true,
   buildPythonPackage, fetchFromGitHub, lib,
   sphinx_1_2, lxml, isodate, numpy, pytest,
-  tkinter ? null,
+  tkinter ? null, py3to2,
   ... }:
 
 let
@@ -26,6 +26,7 @@ buildPythonPackage {
   buildInputs = [
     sphinx_1_2
     pytest
+    py3to2
   ];
   propagatedBuildInputs = [
     lxml