python313Packages.snakemake-storage-plugin-xrootd: 0.1.4 -> 0.4.1

+8 -4
+8 -4
pkgs/development/python-modules/snakemake-storage-plugin-xrootd/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - poetry-core, 5 + hatch-vcs, 6 + hatchling, 6 7 snakemake, 7 8 snakemake-interface-storage-plugins, 8 9 snakemake-interface-common, ··· 11 12 12 13 buildPythonPackage rec { 13 14 pname = "snakemake-storage-plugin-xrootd"; 14 - version = "0.1.4"; 15 + version = "0.4.1"; 15 16 pyproject = true; 16 17 17 18 src = fetchFromGitHub { 18 19 owner = "snakemake"; 19 20 repo = pname; 20 21 tag = "v${version}"; 21 - hash = "sha256-1plBss9jRzIIGQE7rXDEnAomFxNzSUKsw0VyhYA2mIc="; 22 + hash = "sha256-vfMAgOTmT3uzUZHXeKsd8Ze3+b3nFsVHDhkPG+xvz+k="; 22 23 }; 23 24 24 25 # xrootd<6.0.0,>=5.6.4 not satisfied by version 5.7rc20240303 25 26 pythonRelaxDeps = [ "xrootd" ]; 26 27 27 - build-system = [ poetry-core ]; 28 + build-system = [ 29 + hatch-vcs 30 + hatchling 31 + ]; 28 32 29 33 dependencies = [ 30 34 snakemake-interface-storage-plugins