From 169ee736fcb7e5134d8dd7cc52e7a8eb0786f429 Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 1 Jan 2025 15:11:48 +0900 Subject: [PATCH] python312Packages.macaroonbakery: fix version string --- pkgs/development/python-modules/macaroonbakery/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/macaroonbakery/default.nix b/pkgs/development/python-modules/macaroonbakery/default.nix index e9eb35783996..991c9bfa02a4 100644 --- a/pkgs/development/python-modules/macaroonbakery/default.nix +++ b/pkgs/development/python-modules/macaroonbakery/default.nix @@ -28,6 +28,12 @@ buildPythonPackage rec { hash = "sha256-NEhr8zkrHceeLbAyuUvc7U6dyQxkpkj0m5LlnBMafA0="; }; + # fix version string + postPatch = '' + substituteInPlace setup.py \ + --replace-fail "VERSION = (1, 3, 3)" "VERSION = (1, 3, 4)" + ''; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [