Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport release-24.11] quast: 5.0.2 -> 5.3.0 #367469

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
};
}
Loading