26 lines
867 B
Nix
26 lines
867 B
Nix
{ stdenv, fetchurl, python, pythonPackages, pycrypto, attr }:
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
name = "obnam-${version}";
|
|
version = "1.19";
|
|
|
|
namePrefix = "";
|
|
|
|
src = fetchurl rec {
|
|
url = "http://code.liw.fi/debian/pool/main/o/obnam/obnam_${version}.orig.tar.xz";
|
|
sha256 = "1591f3mqhgda486wkpb8q4mq685sy6yn3ypbpzx77wii51licxar";
|
|
};
|
|
|
|
buildInputs = [ pythonPackages.sphinx attr ];
|
|
propagatedBuildInputs = [ pycrypto pythonPackages.paramiko pythonPackages.tracing pythonPackages.ttystatus pythonPackages.cliapp pythonPackages.larch pythonPackages.pyyaml pythonPackages.fuse ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = http://liw.fi/obnam/;
|
|
description = "Backup program supporting deduplication, compression and encryption";
|
|
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|