Skip to content

Commit

Permalink
borgbackup: fix build with python36
Browse files Browse the repository at this point in the history
cffi fails to build with python34.
  • Loading branch information
fpletz committed Sep 10, 2017
1 parent 345e570 commit 4a810fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions pkgs/tools/backup/borg/default.nix
Expand Up @@ -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/;
Expand Down
4 changes: 1 addition & 3 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };

Expand Down

0 comments on commit 4a810fb

Please sign in to comment.