2016-08-14 14:28:05 +02:00
|
|
|
{ stdenv, fetchurl, pythonPackages, attr }:
|
2012-06-04 07:02:31 +02:00
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2013-01-03 13:25:02 +01:00
|
|
|
name = "obnam-${version}";
|
2017-02-09 15:44:36 +01:00
|
|
|
version = "1.21";
|
2013-01-03 13:25:02 +01:00
|
|
|
|
2012-06-04 07:02:31 +02:00
|
|
|
src = fetchurl rec {
|
2015-07-13 23:43:25 +02:00
|
|
|
url = "http://code.liw.fi/debian/pool/main/o/obnam/obnam_${version}.orig.tar.xz";
|
2017-02-09 15:44:36 +01:00
|
|
|
sha256 = "0qlipsq50hca71zc0dp1mg9zs12qm0sbblw7qfzl0hj6mk2rv1by";
|
2012-06-04 07:02:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pythonPackages.sphinx attr ];
|
2016-08-14 14:28:05 +02:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ pycrypto paramiko tracing ttystatus cliapp larch pyyaml fuse ];
|
2012-06-04 07:02:31 +02:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2017-02-09 15:44:36 +01:00
|
|
|
homepage = http://obnam.org;
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Backup program supporting deduplication, compression and encryption";
|
2012-06-04 07:02:31 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|