snakemake: 8.0.1 -> 8.2.1

This commit is contained in:
Dmitry Kalinkin
2024-01-17 16:28:55 -05:00
parent 4e977402c7
commit 346cb05310
@@ -6,14 +6,18 @@
python3.pkgs.buildPythonApplication rec {
pname = "snakemake";
version = "8.0.1";
version = "8.2.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "snakemake";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-F4c/lgp7J6LLye+f3FpzaXz3zM7R+jXxTziPlVbxFxA=";
hash = "sha256-NpsDJuxH+NHvE735OCHaISPSOhYDxWiKqCb4Yk9DHf4=";
# https://github.com/python-versioneer/python-versioneer/issues/217
postFetch = ''
sed -i "$out"/snakemake/_version.py -e 's#git_refnames = ".*"#git_refnames = " (tag: v${version})"#'
'';
};
postPatch = ''