Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f070c90c0163
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1f4c85578248
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 11, 2020

  1. snakemake: 5.9.1 -> 5.10.0

    (cherry picked from commit 68db99a)
    veprbl committed Apr 11, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    42f4fa6 View commit details
  2. snakemake: 5.10.0 -> 5.13.0 (#83839)

    (cherry picked from commit cff5adc)
    r-ryantm authored and veprbl committed Apr 11, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    1f4c855 View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/applications/science/misc/snakemake/default.nix
10 changes: 6 additions & 4 deletions pkgs/applications/science/misc/snakemake/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

python3Packages.buildPythonApplication rec {
pname = "snakemake";
version = "5.9.1";
version = "5.13.0";

propagatedBuildInputs = with python3Packages; [
appdirs
@@ -11,22 +11,24 @@ python3Packages.buildPythonApplication rec {
docutils
GitPython
jsonschema
nbformat
psutil
pyyaml
ratelimiter
requests
toposort
wrapt
];

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0s3y5pz9vqxpj5bx8y7ymh3zmsiyrk7sp8zwqwpva3mli7ky81pz";
sha256 = "11snr7sgv70d3y63s5svijfx8f4xpggh96g8chr6lccl4mi1s9x9";
};

doCheck = false; # Tests depend on Google Cloud credentials at ${HOME}/gcloud-service-key.json

meta = with stdenv.lib; {
homepage = http://snakemake.bitbucket.io;
homepage = "http://snakemake.bitbucket.io";
license = licenses.mit;
description = "Python-based execution environment for make-like workflows";
longDescription = ''
@@ -36,6 +38,6 @@ python3Packages.buildPythonApplication rec {
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 ];
maintainers = with maintainers; [ helkafen renatoGarcia veprbl ];
};
}