Merge branch 'master' into staging-next

This commit is contained in:
Robert Schütz
2018-08-30 21:56:13 +02:00
95 changed files with 1171 additions and 395 deletions

View File

@@ -20,9 +20,8 @@ if !(pythonOlder "3.3") then null else buildPythonPackage rec {
buildInputs = [ lzma ];
# Needs the compiled module in $out
checkPhase = ''
PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ${python.interpreter} -m unittest discover -s test
${python.interpreter} test/test_lzma.py
'';
# Relative import does not seem to function.
@@ -33,4 +32,4 @@ if !(pythonOlder "3.3") then null else buildPythonPackage rec {
homepage = https://github.com/peterjc/backports.lzma;
license = lib.licenses.bsd3;
};
}
}