From f92051f481fe7a5285318c396ecc0f54130c6739 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Thu, 9 Jan 2025 18:07:12 -0500 Subject: [PATCH] python312Packages.gdcm: fix pname --- pkgs/development/libraries/gdcm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gdcm/default.nix b/pkgs/development/libraries/gdcm/default.nix index c840950140c3..ba4ffc332e68 100644 --- a/pkgs/development/libraries/gdcm/default.nix +++ b/pkgs/development/libraries/gdcm/default.nix @@ -16,7 +16,7 @@ }: stdenv.mkDerivation rec { - pname = "gdcm"; + pname = if enablePython then "python-gdcm" else "gdcm"; version = "3.0.24"; src = fetchFromGitHub {