snakemake: 5.9.1 -> 5.10.0

This commit is contained in:
Dmitry Kalinkin 2020-03-14 16:59:46 -04:00 committed by Jon
parent 86a3326a37
commit 68db99ad97

View File

@ -2,7 +2,7 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "snakemake"; pname = "snakemake";
version = "5.9.1"; version = "5.10.0";
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
appdirs appdirs
@ -11,16 +11,18 @@ python3Packages.buildPythonApplication rec {
docutils docutils
GitPython GitPython
jsonschema jsonschema
nbformat
psutil psutil
pyyaml pyyaml
ratelimiter ratelimiter
requests requests
toposort
wrapt wrapt
]; ];
src = python3Packages.fetchPypi { src = python3Packages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0s3y5pz9vqxpj5bx8y7ymh3zmsiyrk7sp8zwqwpva3mli7ky81pz"; sha256 = "0n8d5c8sc90kfdw740ad9ffbkg1ic3k1pmlnk68qr4w4vc98pym3";
}; };
doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json
@ -36,6 +38,6 @@ python3Packages.buildPythonApplication rec {
workflows are essentially Python scripts extended by declarative code to define workflows are essentially Python scripts extended by declarative code to define
rules. Rules describe how to create output files from input files. rules. Rules describe how to create output files from input files.
''; '';
maintainers = with maintainers; [ helkafen renatoGarcia ]; maintainers = with maintainers; [ helkafen renatoGarcia veprbl ];
}; };
} }