0d719146a2
svn path=/nixpkgs/trunk/; revision=34336
24 lines
801 B
Nix
24 lines
801 B
Nix
{ stdenv, fetchurl, python, pythonPackages, pycrypto, attr }:
|
|
|
|
pythonPackages.buildPythonPackage {
|
|
name = "obnam-1.0";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl rec {
|
|
url = "http://code.liw.fi/debian/pool/main/o/obnam/obnam_1.0.orig.tar.gz";
|
|
sha256 = "b3589aac8d97283e44ed8e8c8cf751c4e9cc0677d433a85e27bd42f0d54da623";
|
|
};
|
|
|
|
buildInputs = [ pythonPackages.sphinx attr ];
|
|
propagatedBuildInputs = [ pycrypto pythonPackages.paramiko pythonPackages.tracing pythonPackages.ttystatus pythonPackages.cliapp pythonPackages.larch ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = http://liw.fi/obnam/;
|
|
description = "A backup program supporting deduplication, compression and encryption.";
|
|
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|