nixpkgs/pkgs/applications/science/misc/snakemake/default.nix

47 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, python3Packages }:
2018-08-29 14:27:05 +00:00
python3Packages.buildPythonApplication rec {
2018-08-29 14:27:05 +00:00
pname = "snakemake";
2021-03-26 22:32:26 +00:00
version = "6.0.5";
2018-08-29 14:27:05 +00:00
propagatedBuildInputs = with python3Packages; [
2018-08-29 14:27:05 +00:00
appdirs
ConfigArgParse
datrie
docutils
2021-03-26 22:32:26 +00:00
filelock
2019-04-10 18:18:26 +00:00
GitPython
2018-08-29 14:27:05 +00:00
jsonschema
2020-03-14 20:59:46 +00:00
nbformat
psutil
2020-11-17 22:37:35 +00:00
pulp
2018-08-29 14:27:05 +00:00
pyyaml
ratelimiter
requests
smart-open
2020-03-14 20:59:46 +00:00
toposort
2018-08-29 14:27:05 +00:00
wrapt
];
src = python3Packages.fetchPypi {
2018-08-29 14:27:05 +00:00
inherit pname version;
2021-03-26 22:32:26 +00:00
sha256 = "9441169034cce46086a8b45486d75175db645b932e766d28fed312ec837792d3";
2018-08-29 14:27:05 +00:00
};
doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json
meta = with lib; {
2021-03-26 22:32:26 +00:00
homepage = "https://snakemake.github.io";
2018-08-29 14:27:05 +00: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 20:59:46 +00:00
maintainers = with maintainers; [ helkafen renatoGarcia veprbl ];
2018-08-29 14:27:05 +00:00
};
}