Skip to content

Commit

Permalink
python3Packages.orange3: use gitUpdater, remove with lib
Browse files Browse the repository at this point in the history
Signed-off-by: lucasew <[email protected]>
  • Loading branch information
lucasew committed Nov 19, 2024
1 parent 2dd390e commit d89dea3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/orange3/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
lib,
gitUpdater,
stdenv,
baycomp,
bottleneck,
Expand All @@ -17,7 +18,6 @@
keyrings-alt,
makeDesktopItem,
matplotlib,
nix-update-script,
numpy,
oldest-supported-numpy,
openpyxl,
Expand Down Expand Up @@ -165,7 +165,7 @@ let
'';

passthru = {
updateScript = nix-update-script { };
updateScript = gitUpdater { };
tests.unittests = stdenv.mkDerivation {
name = "${self.name}-tests";
inherit (self) src;
Expand Down Expand Up @@ -211,12 +211,12 @@ let
};
};

meta = with lib; {
meta = {
description = "Data mining and visualization toolbox for novice and expert alike";
homepage = "https://orangedatamining.com/";
changelog = "https://github.com/biolab/orange3/blob/${version}/CHANGELOG.md";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ lucasew ];
license = [ lib.licenses.gpl3Plus ];
maintainers = [ lib.maintainers.lucasew ];
mainProgram = "orange-canvas";
};
};
Expand Down

0 comments on commit d89dea3

Please sign in to comment.