3
0
Fork 0
forked from mirrors/nixpkgs

tarsnapper: add meta

This commit is contained in:
Fabian Affolter 2021-08-24 09:18:18 +02:00
parent e1fb0c6afb
commit 76a5135b8e

View file

@ -1,25 +1,49 @@
{ python3Packages, fetchFromGitHub , tarsnap }:
{ lib
, python3Packages
, fetchFromGitHub
, tarsnap
}:
python3Packages.buildPythonApplication rec {
name = "tarsnapper-${version}";
pname = "tarsnapper";
version = "0.4";
src = fetchFromGitHub {
owner = "miracle2k";
repo = "tarsnapper";
repo = pname;
rev = version;
sha256 = "03db49188f4v1946c8mqqj30ah10x68hbg3a58js0syai32v12pm";
};
checkInputs = with python3Packages; [ nose pytest ];
propagatedBuildInputs = with python3Packages; [
pyyaml
python-dateutil
pexpect
];
checkInputs = with python3Packages; [
nose
];
patches = [
# Remove standard module argparse from requirements
./remove-argparse.patch
];
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ tarsnap ]}" ];
checkPhase = ''
py.test .
runHook preCheck
nosetests tests
runHook postCheck
'';
propagatedBuildInputs = with python3Packages; [ pyyaml python-dateutil pexpect ];
pythonImportsCheck = [ "tarsnapper" ];
patches = [ ./remove-argparse.patch ];
makeWrapperArgs = ["--prefix PATH : ${tarsnap}/bin"];
meta = with lib; {
description = "Wrapper which expires backups using a gfs-scheme";
homepage = "https://github.com/miracle2k/tarsnapper";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}