Skip to content

Commit

Permalink
snakemake: 5.9.1 -> 5.10.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 68db99a)
  • Loading branch information
veprbl committed Apr 11, 2020
1 parent f070c90 commit 42f4fa6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/applications/science/misc/snakemake/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

python3Packages.buildPythonApplication rec {
pname = "snakemake";
version = "5.9.1";
version = "5.10.0";

propagatedBuildInputs = with python3Packages; [
appdirs
Expand All @@ -11,16 +11,18 @@ python3Packages.buildPythonApplication rec {
docutils
GitPython
jsonschema
nbformat
psutil
pyyaml
ratelimiter
requests
toposort
wrapt
];

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0s3y5pz9vqxpj5bx8y7ymh3zmsiyrk7sp8zwqwpva3mli7ky81pz";
sha256 = "0n8d5c8sc90kfdw740ad9ffbkg1ic3k1pmlnk68qr4w4vc98pym3";
};

doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json
Expand All @@ -36,6 +38,6 @@ python3Packages.buildPythonApplication rec {
workflows are essentially Python scripts extended by declarative code to define
rules. Rules describe how to create output files from input files.
'';
maintainers = with maintainers; [ helkafen renatoGarcia ];
maintainers = with maintainers; [ helkafen renatoGarcia veprbl ];
};
}

0 comments on commit 42f4fa6

Please sign in to comment.