python3Packages.zconfig: 4.0 -> 4.1

The pypi artifact has been renamed from ZConfig to zconfig.

Unbreaks the build.
This commit is contained in:
Mathis Antony 2024-05-26 16:35:55 +02:00
parent 12d0d3d9d5
commit cdda685ca9
No known key found for this signature in database
GPG Key ID: 584D5AC88FDC1991

@ -14,15 +14,14 @@
buildPythonPackage rec {
pname = "zconfig";
version = "4.0";
version = "4.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "ZConfig";
inherit version;
hash = "sha256-+NZC+6a6mNCGMb4sH3GtGVfAUf70qj0/ufHgjcYdAVY=";
inherit pname version;
hash = "sha256-tqed2hV/NpjIdo0s7cJjIW6K8kDTz50JoCpkKREU6yA=";
};
patches = lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch;