mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 00:22:13 +00:00
26 lines
873 B
Nix
26 lines
873 B
Nix
{ stdenv, fetchurl, python, pythonPackages, pycrypto, attr }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "obnam-${version}";
|
|
version = "1.19.1";
|
|
|
|
namePrefix = "";
|
|
|
|
src = fetchurl rec {
|
|
url = "http://code.liw.fi/debian/pool/main/o/obnam/obnam_${version}.orig.tar.xz";
|
|
sha256 = "096abbvz2c9vm8r7zm82yqrd7zj04pb1xzlv6z0dspkngd0cfdqc";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|