arelle: add py3to2 as a buildInput

This commit is contained in:
Samuel Leathers 2017-09-14 14:28:29 -04:00
parent fad96f62d0
commit 6ac283b185
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ gui ? true, { gui ? true,
buildPythonPackage, fetchFromGitHub, lib, buildPythonPackage, fetchFromGitHub, lib,
sphinx_1_2, lxml, isodate, numpy, pytest, sphinx_1_2, lxml, isodate, numpy, pytest,
tkinter ? null, tkinter ? null, py3to2,
... }: ... }:
let let
@ -26,6 +26,7 @@ buildPythonPackage {
buildInputs = [ buildInputs = [
sphinx_1_2 sphinx_1_2
pytest pytest
py3to2
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
lxml lxml

View File

@ -101,7 +101,7 @@ in {
py3to2 = callPackage ../development/python-modules/3to2 { }; py3to2 = callPackage ../development/python-modules/3to2 { };
# Left for backwards compatibility # Left for backwards compatibility
"3to2" = callPackage ../development/python-modules/3to2 { }; "3to2" = self.py3to2;
aenum = callPackage ../development/python-modules/aenum { }; aenum = callPackage ../development/python-modules/aenum { };