Merge pull request #321561 from dotlambda/udiskie

udiskie: 2.5.2 -> 2.5.3
This commit is contained in:
Robert Schütz 2024-07-13 22:35:00 -07:00 committed by GitHub
commit 1341af181b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,16 +7,16 @@
, libappindicator-gtk3
, libnotify
, librsvg
, python3
, python3Packages
, udisks2
, wrapGAppsHook3
, testers
, udiskie
}:
python3.pkgs.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "udiskie";
version = "2.5.2";
version = "2.5.3";
pyproject = true;
@ -24,7 +24,7 @@ python3.pkgs.buildPythonApplication rec {
owner = "coldfix";
repo = "udiskie";
rev = "v${version}";
hash = "sha256-r9ppuWYY3e2thsfFh4ooOgfqNvmCVw7fS0SpJCJcysQ=";
hash = "sha256-asrVQR0d+5l76COsXp88srtGZQHU+AwbP3HwDiwRlnE=";
};
patches = [
@ -39,10 +39,13 @@ python3.pkgs.buildPythonApplication rec {
asciidoc # Man page
gobject-introspection
installShellFiles
python3.pkgs.setuptools
wrapGAppsHook3
];
build-system = with python3Packages; [
setuptools
];
dontWrapGApps = true;
buildInputs = [
@ -53,7 +56,7 @@ python3.pkgs.buildPythonApplication rec {
udisks2
];
propagatedBuildInputs = with python3.pkgs; [
dependencies = with python3Packages; [
docopt
keyutils
pygobject3
@ -76,7 +79,7 @@ python3.pkgs.buildPythonApplication rec {
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
nativeCheckInputs = with python3.pkgs; [
nativeCheckInputs = with python3Packages; [
pytestCheckHook
];