Skip to content

Commit

Permalink
Merge staging-next-24.05 into staging-24.05
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 9, 2024
2 parents 87b4838 + 7b5f7fd commit 3df953a
Show file tree
Hide file tree
Showing 16 changed files with 155 additions and 6,030 deletions.
38 changes: 18 additions & 20 deletions pkgs/applications/misc/gallery-dl/default.nix
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@
{ lib, buildPythonApplication, fetchPypi, fetchpatch, requests, yt-dlp, pytestCheckHook }:
{
lib,
buildPythonApplication,
fetchPypi,
requests,
yt-dlp,
pytestCheckHook,
nix-update-script,
}:

buildPythonApplication rec {
pname = "gallery-dl";
version = "1.26.9";
version = "1.27.4";
format = "setuptools";

src = fetchPypi {
inherit version;
pname = "gallery_dl";
sha256 = "sha256-PgbfppyJCpgFupBQng8MUPihbDmit4C+xWnSzCJyu5k=";
hash = "sha256-28y5sU9onPHIqlTIYzIQ+J2KElJocbuwKQN/E50JGI8=";
};

patches = [
# catch general Exceptions. Remove with the next release.
(fetchpatch {
url = "https://github.com/mikf/gallery-dl/commit/5227bb6b1d62ecef5b281592b0d001e7f9c101e3.patch";
hash = "sha256-rVsd764siP/07XBPVDnpxMm/4kLiH3fp9+NtpHHH23U=";
})
];

propagatedBuildInputs = [
requests
yt-dlp
];

nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];

pytestFlagsArray = [
# requires network access
Expand All @@ -37,16 +35,16 @@ buildPythonApplication rec {
"--ignore=test/test_ytdl.py"
];

pythonImportsCheck = [
"gallery_dl"
];
pythonImportsCheck = [ "gallery_dl" ];

passthru.updateScript = nix-update-script { };

meta = with lib; {
meta = {
description = "Command-line program to download image-galleries and -collections from several image hosting sites";
homepage = "https://github.com/mikf/gallery-dl";
changelog = "https://github.com/mikf/gallery-dl/blob/v${version}/CHANGELOG.md";
license = licenses.gpl2Only;
license = lib.licenses.gpl2Only;
mainProgram = "gallery-dl";
maintainers = with maintainers; [ dawidsowa ];
maintainers = with lib.maintainers; [ dawidsowa ];
};
}
12 changes: 6 additions & 6 deletions pkgs/applications/networking/browsers/microsoft-edge/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
beta = import ./browser.nix {
channel = "beta";
version = "128.0.2739.42";
version = "129.0.2792.12";
revision = "1";
hash = "sha256-VcBn2WL4rdAeEa62XT/dhC2OFLsV0Q/Sp6hqgmc/e0Y=";
hash = "sha256-LWu5DKCoGSFqUZqgvKx3aoZRzAf6FR3hJnk/agAV9sI=";
};
dev = import ./browser.nix {
channel = "dev";
version = "129.0.2779.0";
version = "129.0.2792.10";
revision = "1";
hash = "sha256-hlamsHTpBMGwOICga0k874q8+xuaZFMofFLG/EvB0NU=";
hash = "sha256-jw/muaunLlrtZADrD7asVH+o/u3cp3NyvjRXqPWyHJI=";
};
stable = import ./browser.nix {
channel = "stable";
version = "128.0.2739.42";
version = "128.0.2739.54";
revision = "1";
hash = "sha256-AwdZX2Ens2+rhHLYV0efYsXYBTs2a57HyGz2k+IDMeQ=";
hash = "sha256-qiLZExLU3f6l+qPEGiqOuDgjqOtSyhPwSt7kQfBBSyg=";
};
}
Loading

0 comments on commit 3df953a

Please sign in to comment.