1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #29388 from disassembler/arelle

arelle: add py3to2 as a buildInput
This commit is contained in:
Frederik Rietdijk 2017-09-15 12:26:01 +02:00 committed by GitHub
commit 47e1751fd0
2 changed files with 5 additions and 2 deletions

View file

@ -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

View file

@ -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 { };