pythonPackages.rotate-backups: init at 6.0

This commit is contained in:
eyjhbb@gmail.com 2019-07-23 16:57:40 +02:00
parent adfa7bd59f
commit d774370939
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchFromGitHub, update-dotdee, simpleeval, dateutil }:
buildPythonPackage rec {
pname = "rotate-backups";
version = "6.0";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-rotate-backups";
rev = version;
sha256 = "0i59qfv1cfm0ss63ab2nrkn5wr4rxpqqmvfd7pf9c3pl9dbfq20c";
};
propagatedBuildInputs = [ update-dotdee simpleeval dateutil ];
meta = with lib; {
description = "Simple command line interface for backup rotation";
homepage = https://github.com/xolox/python-rotate-backups;
license = licenses.mit;
maintainers = with maintainers; [ eyjhb ];
};
}

View File

@ -13097,6 +13097,8 @@ in
rocksdb_lite = rocksdb.override { enableLite = true; };
rotate-backups = with python3Packages; toPythonApplication rotate-backups;
rote = callPackage ../development/libraries/rote { };
ronn = callPackage ../development/tools/ronn { };

View File

@ -2665,6 +2665,8 @@ in {
roman = callPackage ../development/python-modules/roman { };
rotate-backups = callPackage ../tools/backup/rotate-backups { };
librosa = callPackage ../development/python-modules/librosa { };
samplerate = callPackage ../development/python-modules/samplerate { };