2014-03-30 03:26:24 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages, lzop, postgresql, pv }:
|
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wal-e";
|
2014-09-16 09:49:21 +01:00
|
|
|
version = "0.6.10";
|
2014-03-30 03:26:24 +01:00
|
|
|
|
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/wal-e/wal-e/archive/v${version}.tar.gz";
|
2014-09-16 09:49:21 +01:00
|
|
|
sha256 = "1hms24xz7wx3b91vv56fhcc3j0cszwqwnmwhka4yl90202hvdir2";
|
2014-03-30 03:26:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# needs tox
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pythonPackages.boto
|
|
|
|
pythonPackages.gevent
|
|
|
|
postgresql
|
|
|
|
lzop
|
|
|
|
pv
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Postgres WAL-shipping disaster recovery and replication toolkit";
|
|
|
|
homepage = https://github.com/wal-e/wal-e;
|
2019-08-20 14:24:01 +01:00
|
|
|
maintainers = [];
|
2014-05-01 09:51:15 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2014-03-30 03:26:24 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|