From 5f0d20b95f3f07a2c866575eed5077b070f98b76 Mon Sep 17 00:00:00 2001 From: Justin Restivo Date: Sun, 14 Dec 2025 11:20:14 -0500 Subject: [PATCH] python3Packages.colanderalchemy: fix incorrect pname --- pkgs/development/python-modules/colanderalchemy/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/colanderalchemy/default.nix b/pkgs/development/python-modules/colanderalchemy/default.nix index 089c1c506927..78dfa0330163 100644 --- a/pkgs/development/python-modules/colanderalchemy/default.nix +++ b/pkgs/development/python-modules/colanderalchemy/default.nix @@ -7,12 +7,13 @@ }: buildPythonPackage rec { - pname = "colanderclchemy"; + pname = "colanderalchemy"; version = "0.3.4"; format = "setuptools"; src = fetchPypi { - inherit pname version; + inherit version; + pname = "ColanderAlchemy"; sha256 = "006wcfch2skwvma9bq3l06dyjnz309pa75h1rviq7i4pd9g463bl"; };