Skip to content

Commit

Permalink
Merge pull request #29388 from disassembler/arelle
Browse files Browse the repository at this point in the history
arelle: add py3to2 as a buildInput
(cherry picked from commit 47e1751)
  • Loading branch information
FRidh committed Sep 15, 2017
1 parent 329d844 commit 01aafc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion 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
Expand All @@ -26,6 +26,7 @@ buildPythonPackage {
buildInputs = [
sphinx_1_2
pytest
py3to2
];
propagatedBuildInputs = [
lxml
Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/python-packages.nix
Expand Up @@ -99,7 +99,9 @@ in {

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

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

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

Expand Down

0 comments on commit 01aafc6

Please sign in to comment.