Skip to content

Commit

Permalink
Merge pull request #89778 from jbedo/spades
Browse files Browse the repository at this point in the history
SPAdes: add python dependency
  • Loading branch information
SuperSandro2000 committed Dec 21, 2020
2 parents 5ba85d6 + 3a65e29 commit af69f39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/science/biology/spades/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, zlib, bzip2, cmake }:
{ stdenv, fetchurl, zlib, bzip2, cmake, python3 }:

stdenv.mkDerivation rec {
pname = "SPAdes";
Expand All @@ -11,7 +11,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ cmake ];

buildInputs = [ zlib bzip2 ];
buildInputs = [ zlib bzip2 python3 ];

doCheck = true;

Expand Down

0 comments on commit af69f39

Please sign in to comment.