pythonPackages.devpi-common: mark as broken

It fails to build because it depends on packaging <22 while we use
packaging >22.

See the following issues for details:
- https://github.com/NixOS/nixpkgs/issues/231346
- https://github.com/devpi/devpi/issues/939
This commit is contained in:
Antoine Eiche 2023-05-13 10:12:24 +02:00
parent d5c01181b9
commit f65f9b215e

View file

@ -35,5 +35,11 @@ buildPythonPackage rec {
description = "Utilities jointly used by devpi-server and devpi-client";
license = licenses.mit;
maintainers = with maintainers; [ lewo makefu ];
# It fails to build because it depends on packaging <22 while we
# use packaging >22.
# See the following issues for details:
# - https://github.com/NixOS/nixpkgs/issues/231346
# - https://github.com/devpi/devpi/issues/939
broken = true;
};
}