Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 94364575423c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e7b7e617f0c8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 1, 2020

  1. wal_e: 0.6.10 -> 1.1.1

    Also refactor to use python3
    And add support for google-cloud-storage
    freezeboy authored and FRidh committed Nov 1, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    e7b7e61 View commit details
Showing with 9 additions and 7 deletions.
  1. +9 −7 pkgs/tools/backup/wal-e/default.nix
16 changes: 9 additions & 7 deletions pkgs/tools/backup/wal-e/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
{ stdenv, fetchurl, pythonPackages, lzop, postgresql, pv }:
{ stdenv, fetchurl, python3Packages, lzop, postgresql, pv }:

pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "wal-e";
version = "0.6.10";
version = "1.1.1";

namePrefix = "";

src = fetchurl {
url = "https://github.com/wal-e/wal-e/archive/v${version}.tar.gz";
sha256 = "1hms24xz7wx3b91vv56fhcc3j0cszwqwnmwhka4yl90202hvdir2";
sha256 = "5TTd7NTO73+MCJf3dHIcNojjHdoaKJ1T051iW7Kt9Ow=";
};

# needs tox
doCheck = false;

propagatedBuildInputs = [
pythonPackages.boto
pythonPackages.gevent
propagatedBuildInputs = (with python3Packages; [
boto
gevent
google_cloud_storage
]) ++ [
postgresql
lzop
pv