snakemake: 5.28.0 -> 6.0.5
This commit is contained in:
parent
c0e8818520
commit
8887f4655e
1 changed files with 5 additions and 3 deletions
|
@ -2,13 +2,14 @@
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "snakemake";
|
pname = "snakemake";
|
||||||
version = "5.28.0";
|
version = "6.0.5";
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
appdirs
|
appdirs
|
||||||
ConfigArgParse
|
ConfigArgParse
|
||||||
datrie
|
datrie
|
||||||
docutils
|
docutils
|
||||||
|
filelock
|
||||||
GitPython
|
GitPython
|
||||||
jsonschema
|
jsonschema
|
||||||
nbformat
|
nbformat
|
||||||
|
@ -17,19 +18,20 @@ python3Packages.buildPythonApplication rec {
|
||||||
pyyaml
|
pyyaml
|
||||||
ratelimiter
|
ratelimiter
|
||||||
requests
|
requests
|
||||||
|
smart_open
|
||||||
toposort
|
toposort
|
||||||
wrapt
|
wrapt
|
||||||
];
|
];
|
||||||
|
|
||||||
src = python3Packages.fetchPypi {
|
src = python3Packages.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "2367ce91baf7f8fa7738d33aff9670ffdf5410bbac49aeb209f73b45a3425046";
|
sha256 = "9441169034cce46086a8b45486d75175db645b932e766d28fed312ec837792d3";
|
||||||
};
|
};
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://snakemake.readthedocs.io";
|
homepage = "https://snakemake.github.io";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
description = "Python-based execution environment for make-like workflows";
|
description = "Python-based execution environment for make-like workflows";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
Loading…
Reference in a new issue