diff --git a/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix b/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix index 9c88ce9f45a4..1620865f1869 100644 --- a/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix +++ b/pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix @@ -2,7 +2,8 @@ lib, buildPythonPackage, fetchFromGitHub, - poetry-core, + hatch-vcs, + hatchling, snakemake, snakemake-interface-storage-plugins, snakemake-interface-common, @@ -11,20 +12,23 @@ buildPythonPackage rec { pname = "snakemake-storage-plugin-xrootd"; - version = "0.1.4"; + version = "0.4.1"; pyproject = true; src = fetchFromGitHub { owner = "snakemake"; repo = pname; tag = "v${version}"; - hash = "sha256-1plBss9jRzIIGQE7rXDEnAomFxNzSUKsw0VyhYA2mIc="; + hash = "sha256-vfMAgOTmT3uzUZHXeKsd8Ze3+b3nFsVHDhkPG+xvz+k="; }; # xrootd<6.0.0,>=5.6.4 not satisfied by version 5.7rc20240303 pythonRelaxDeps = [ "xrootd" ]; - build-system = [ poetry-core ]; + build-system = [ + hatch-vcs + hatchling + ]; dependencies = [ snakemake-interface-storage-plugins