mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
24 lines
745 B
Nix
24 lines
745 B
Nix
{ stdenv, fetchurl, pythonPackages, attr }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "obnam-${version}";
|
|
version = "1.21";
|
|
|
|
src = fetchurl rec {
|
|
url = "http://code.liw.fi/debian/pool/main/o/obnam/obnam_${version}.orig.tar.xz";
|
|
sha256 = "0qlipsq50hca71zc0dp1mg9zs12qm0sbblw7qfzl0hj6mk2rv1by";
|
|
};
|
|
|
|
buildInputs = [ pythonPackages.sphinx attr ];
|
|
propagatedBuildInputs = with pythonPackages; [ pycrypto paramiko tracing ttystatus cliapp larch pyyaml fuse ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = http://obnam.org;
|
|
description = "Backup program supporting deduplication, compression and encryption";
|
|
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|