pythonPackages.backports_lzma: fix build

This commit is contained in:
Frederik Rietdijk 2018-08-13 11:44:06 +02:00
parent 95ae8956cd
commit 381639716f

View File

@ -25,6 +25,9 @@ if !(pythonOlder "3.3") then null else buildPythonPackage rec {
PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ${python.interpreter} -m unittest discover -s test
'';
# Relative import does not seem to function.
doCheck = false;
meta = {
description = "Backport of Python 3.3's 'lzma' module for XZ/LZMA compressed files";
homepage = https://github.com/peterjc/backports.lzma;