My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/applications/science/misc/snakemake/default.nix

44 lines
1.2 KiB

{
stdenv
, python
}:
python.buildPythonPackage rec {
pname = "snakemake";
version = "5.4.4";
propagatedBuildInputs = with python; [
appdirs
ConfigArgParse
datrie
docutils
GitPython
jsonschema
pyyaml
ratelimiter
requests
wrapt
];
src = python.fetchPypi {
inherit pname version;
sha256 = "157323e0e1be34302edbbf399b2acbe25a4291bceffd47a0469963a970c9375f";
};
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.
'';
maintainers = with maintainers; [ helkafen renatoGarcia ];
};
}