Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
829 B
Nix
37 lines
829 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "zfs-autobackup";
|
|
version = "3.3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "zfs_autobackup";
|
|
hash = "sha256-nAc1mdrtIEmUS0uMqOdvV07xP02MFj6F5uCTiCXtnMs=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
dependencies = with python3Packages; [ colorama ];
|
|
|
|
pythonRemoveDeps = [ "argparse" ];
|
|
|
|
# tests need zfs filesystem
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "zfs_autobackup" ];
|
|
|
|
meta = {
|
|
description = "ZFS backup, replicationand snapshot tool";
|
|
homepage = "https://github.com/psy0rz/zfs_autobackup";
|
|
changelog = "https://github.com/psy0rz/zfs_autobackup/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = [ ];
|
|
};
|
|
}
|