pythonPackages.babelgladeextractor: disable for python2

Uses python3 specific calls in setup.py:
```
  File "setup.py", line 23, in _slurp
    with open(path, encoding="utf-8") as fp:
TypeError: 'encoding' is an invalid keyword argument for this function
```
This commit is contained in:
Jonathan Ringer 2020-02-15 08:51:41 -08:00 committed by Jon
parent 5d84954f27
commit 1037206971

View file

@ -9,6 +9,7 @@
buildPythonPackage rec {
pname = "babelgladeextractor";
version = "0.7.0";
disabled = (!isPy3k); # uses python3 specific file io in setup.py
src = fetchPypi {
pname = "BabelGladeExtractor";