From f29fa25a150f319eb3e49fd66b4dc08e62866156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 22 Jul 2024 08:31:42 -0700 Subject: [PATCH] Revert "dasbus: unstable-11-10-2022 -> 0-unstable-2023-07-10" --- .../python-modules/dasbus/default.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/dasbus/default.nix b/pkgs/development/python-modules/dasbus/default.nix index 39dcd6f046ff..a1bcb4520254 100644 --- a/pkgs/development/python-modules/dasbus/default.nix +++ b/pkgs/development/python-modules/dasbus/default.nix @@ -6,33 +6,27 @@ dbus, hatchling, pytestCheckHook, - unstableGitUpdater, }: buildPythonPackage rec { pname = "dasbus"; - version = "0-unstable-2023-07-10"; + version = "unstable-11-10-2022"; format = "pyproject"; src = fetchFromGitHub { owner = "rhinstaller"; - repo = "dasbus"; - rev = "be51b94b083bad6fa0716ad6dc97d12f4462f8d4"; - hash = "sha256-9nDH9S5addyl1h6G1UTRTSKeGfRo+8XRPq2BdgiZD24="; + repo = pname; + rev = "64b6b4d9e37cd7e0cbf4a7bf75faa7cdbd01086d"; + hash = "sha256-TmhhDrfpP+nUErAd7dUb+RtGBRtWwn3bYOoIqa0VRoc="; }; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ pygobject3 ]; nativeCheckInputs = [ dbus - # causes build failure at pytestCheckPhase, FIXME: remove in future - # pytestCheckHook + pytestCheckHook ]; - passthru.updateScript = unstableGitUpdater { - hardcodeZeroVersion = true; - }; - meta = with lib; { homepage = "https://github.com/rhinstaller/dasbus"; description = "DBus library in Python3";