zfs-replicate: move to by-name

This commit is contained in:
Gaetan Lepage
2025-01-02 14:33:45 +01:00
parent 3fe57fe3bc
commit ef8fab1b2c
2 changed files with 5 additions and 13 deletions
@@ -1,16 +1,10 @@
{
buildPythonApplication,
click,
python3Packages,
fetchPypi,
hypothesis,
lib,
poetry-core,
pytest-cov-stub,
pytestCheckHook,
stringcase,
}:
buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "zfs_replicate";
version = "4.0.0";
pyproject = true;
@@ -20,17 +14,17 @@ buildPythonApplication rec {
hash = "sha256-9WD2IW7GRxMF7hOa8HTI/+cuOjVaYMT4OnrYU/xFgME=";
};
nativeBuildInputs = [
nativeBuildInputs = with python3Packages; [
poetry-core
];
nativeCheckInputs = [
nativeCheckInputs = with python3Packages; [
pytestCheckHook
hypothesis
pytest-cov-stub
];
propagatedBuildInputs = [
propagatedBuildInputs = with python3Packages; [
click
stringcase
];
-2
View File
@@ -18571,8 +18571,6 @@ with pkgs;
wfuzz = with python3Packages; toPythonApplication wfuzz;
zfs-replicate = python3Packages.callPackage ../tools/backup/zfs-replicate { };
kodelife = callPackage ../applications/graphics/kodelife {
inherit (gst_all_1) gstreamer gst-plugins-base;
};