Skip to content

Commit

Permalink
Merge pull request NixOS#317460 from bobby285271/upd/xapp
Browse files Browse the repository at this point in the history
Revert "python3Packages.xapp: 2.4.1 -> 21" and "python3Packages.xapp: 21 -> 22"
  • Loading branch information
bobby285271 authored Jun 5, 2024
2 parents e8057b6 + 3182dce commit 6d01b45
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pkgs/development/python-modules/xapp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@

buildPythonPackage rec {
pname = "xapp";
version = "22";
version = "2.4.1";

format = "other";

src = fetchFromGitHub {
owner = "linuxmint";
repo = "python-xapp";
rev = "refs/tags/master.mint${version}";
hash = "sha256-2Gx85y0ARu6EfDYAT9ZL154RH0R1HY78tm3rceODnZU=";
rev = version;
hash = "sha256-Kvhp+biZ+KK9FYma/8cUEaQCHPKMLjOO909kbyMLQ3o=";
};

nativeBuildInputs = [
Expand Down Expand Up @@ -55,7 +55,10 @@ buildPythonPackage rec {
doCheck = false;
pythonImportsCheck = [ "xapp" ];

passthru.updateScript = gitUpdater { ignoredVersions = "^master.*"; };
passthru = {
updateScript = gitUpdater { ignoredVersions = "^master.*"; };
skipBulkUpdate = true; # This should be bumped as part of Cinnamon update.
};

meta = with lib; {
homepage = "https://github.com/linuxmint/python-xapp";
Expand Down

0 comments on commit 6d01b45

Please sign in to comment.