2019-11-12 15:46:56 -08:00
|
|
|
{ stdenv, python3Packages }:
|
2018-08-29 07:27:05 -07:00
|
|
|
|
2019-11-12 15:46:56 -08:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-08-29 07:27:05 -07:00
|
|
|
pname = "snakemake";
|
2019-12-09 11:47:24 -08:00
|
|
|
version = "5.8.1";
|
2018-08-29 07:27:05 -07:00
|
|
|
|
2019-11-12 15:46:56 -08:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2018-08-29 07:27:05 -07:00
|
|
|
appdirs
|
|
|
|
ConfigArgParse
|
|
|
|
datrie
|
|
|
|
docutils
|
2019-04-10 11:18:26 -07:00
|
|
|
GitPython
|
2018-08-29 07:27:05 -07:00
|
|
|
jsonschema
|
2019-11-12 15:46:56 -08:00
|
|
|
psutil
|
2018-08-29 07:27:05 -07:00
|
|
|
pyyaml
|
|
|
|
ratelimiter
|
|
|
|
requests
|
|
|
|
wrapt
|
|
|
|
];
|
|
|
|
|
2019-11-12 15:46:56 -08:00
|
|
|
src = python3Packages.fetchPypi {
|
2018-08-29 07:27:05 -07:00
|
|
|
inherit pname version;
|
2019-12-09 11:47:24 -08:00
|
|
|
sha256 = "1r1qi14klmxmmw7vcivp45jrjka5rcwlcfggj5npnfb378fx3hb0";
|
2018-08-29 07:27:05 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://snakemake.bitbucket.io;
|
|
|
|
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.
|
|
|
|
'';
|
2018-09-05 12:46:17 -07:00
|
|
|
maintainers = with maintainers; [ helkafen renatoGarcia ];
|
2018-08-29 07:27:05 -07:00
|
|
|
};
|
|
|
|
}
|