2019-11-13 00:46:56 +01:00
|
|
|
{ stdenv, python3Packages }:
|
2018-08-29 16:27:05 +02:00
|
|
|
|
2019-11-13 00:46:56 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-08-29 16:27:05 +02:00
|
|
|
pname = "snakemake";
|
2020-07-03 05:36:20 +02:00
|
|
|
version = "5.19.3";
|
2018-08-29 16:27:05 +02:00
|
|
|
|
2019-11-13 00:46:56 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2018-08-29 16:27:05 +02:00
|
|
|
appdirs
|
|
|
|
ConfigArgParse
|
|
|
|
datrie
|
|
|
|
docutils
|
2019-04-10 20:18:26 +02:00
|
|
|
GitPython
|
2018-08-29 16:27:05 +02:00
|
|
|
jsonschema
|
2020-03-14 21:59:46 +01:00
|
|
|
nbformat
|
2019-11-13 00:46:56 +01:00
|
|
|
psutil
|
2018-08-29 16:27:05 +02:00
|
|
|
pyyaml
|
|
|
|
ratelimiter
|
|
|
|
requests
|
2020-03-14 21:59:46 +01:00
|
|
|
toposort
|
2018-08-29 16:27:05 +02:00
|
|
|
wrapt
|
|
|
|
];
|
|
|
|
|
2019-11-13 00:46:56 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
2018-08-29 16:27:05 +02:00
|
|
|
inherit pname version;
|
2020-07-03 05:36:20 +02:00
|
|
|
sha256 = "b83f3ef73e25dafcb39b3565030e33fa2f7e80ed70256c535dc7e58ea762305d";
|
2018-08-29 16:27:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-25 15:19:54 +02:00
|
|
|
homepage = "https://snakemake.readthedocs.io";
|
2018-08-29 16:27:05 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
description = "Python-based execution environment for make-like workflows";
|
|
|
|
longDescription = ''
|
|
|
|
Snakemake is a workflow management system that aims to reduce the complexity of
|
|
|
|
creating workflows by providing a fast and comfortable execution environment,
|
|
|
|
together with a clean and readable specification language in Python style. Snakemake
|
|
|
|
workflows are essentially Python scripts extended by declarative code to define
|
|
|
|
rules. Rules describe how to create output files from input files.
|
|
|
|
'';
|
2020-03-14 21:59:46 +01:00
|
|
|
maintainers = with maintainers; [ helkafen renatoGarcia veprbl ];
|
2018-08-29 16:27:05 +02:00
|
|
|
};
|
|
|
|
}
|