Skip to content

Commit

Permalink
[Backport release-24.11] quast: 5.0.2 -> 5.3.0 (#367469)
Browse files Browse the repository at this point in the history
  • Loading branch information
misuzu authored Dec 25, 2024
2 parents 158db6a + bbf225a commit 3c4b396
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pkgs/by-name/qu/quast/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@ in

pythonPackages.buildPythonApplication rec {
pname = "quast";
version = "5.0.2";
version = "5.3.0";

src = fetchurl {
url = "https://github.com/ablab/quast/releases/download/${pname}_${version}/${pname}-${version}.tar.gz";
sha256 = "13ml8qywbb4cc7wf2x7z5mz1rjqg51ab8wkizwcg4f6c40zgif6d";
hash = "sha256-rJ26A++dClHXqeLFaCYQTnjzQPYmOjrTk2SEQt68dOw=";
};

pythonPath = with pythonPackages; [
simplejson
joblib
setuptools
distutils
matplotlib
];

Expand Down Expand Up @@ -58,15 +59,15 @@ pythonPackages.buildPythonApplication rec {
# Tests need to download data files, so manual run after packaging is needed
doCheck = false;

meta = with lib; {
meta = {
description = "Evaluates genome assemblies by computing various metrics";
homepage = "https://github.com/ablab/quast";
sourceProvenance = with sourceTypes; [
sourceProvenance = with lib.sourceTypes; [
fromSource
binaryNativeCode # source bundles binary dependencies
];
license = licenses.gpl2;
maintainers = [ maintainers.bzizou ];
platforms = platforms.all;
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.bzizou ];
platforms = lib.platforms.all;
};
}

0 comments on commit 3c4b396

Please sign in to comment.