borgbackup: fix build with python36

cffi fails to build with python34.
This commit is contained in:
Franz Pletz 2017-09-10 16:25:51 +02:00
parent 345e570921
commit 4a810fb31d
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 4 additions and 3 deletions

View file

@ -37,6 +37,9 @@ python3Packages.buildPythonApplication rec {
cp -R docs/_build/man $out/share/man/man1
'';
# tests fail due to missing test command in nix_run_setup.py
doCheck = false;
meta = with stdenv.lib; {
description = "A deduplicating backup program (attic fork)";
homepage = https://borgbackup.github.io/;

View file

@ -740,9 +740,7 @@ with pkgs;
bubblewrap = callPackage ../tools/admin/bubblewrap { };
borgbackup = callPackage ../tools/backup/borg {
python3Packages = python34Packages;
};
borgbackup = callPackage ../tools/backup/borg { };
boomerang = callPackage ../development/tools/boomerang { };