Skip to content

Commit 01aafc6

Browse files
committedSep 15, 2017
Merge pull request #29388 from disassembler/arelle
arelle: add py3to2 as a buildInput (cherry picked from commit 47e1751)
1 parent 329d844 commit 01aafc6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

Diff for: ‎pkgs/development/python-modules/arelle/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ gui ? true,
22
buildPythonPackage, fetchFromGitHub, lib,
33
sphinx_1_2, lxml, isodate, numpy, pytest,
4-
tkinter ? null,
4+
tkinter ? null, py3to2,
55
... }:
66

77
let
@@ -26,6 +26,7 @@ buildPythonPackage {
2626
buildInputs = [
2727
sphinx_1_2
2828
pytest
29+
py3to2
2930
];
3031
propagatedBuildInputs = [
3132
lxml

Diff for: ‎pkgs/top-level/python-packages.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ in {
9999

100100
acoustics = callPackage ../development/python-modules/acoustics { };
101101

102-
"3to2" = callPackage ../development/python-modules/3to2 { };
102+
py3to2 = callPackage ../development/python-modules/3to2 { };
103+
# Left for backwards compatibility
104+
"3to2" = self.py3to2;
103105

104106
aenum = callPackage ../development/python-modules/aenum { };
105107

0 commit comments

Comments
 (0)