From 9b69cf086595b64c2e8373d49a65df193e4d2ae8 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Fri, 26 Apr 2019 08:15:25 +0100 Subject: [PATCH] pythonPackages.ColanderAlchemy: mark as broken for colander >1.6.0 (#59975) ColanderAlchemy doesn't seem to have been updated for colander 1.7.0, or at least its tests haven't been and we get a single, subtle test failure around null handling which I don't feel comfortable skipping. Issue filed upstream https://github.com/stefanofontanelli/ColanderAlchemy/issues/107 users that really need this will have to feed in their own pinned colander package. --- pkgs/development/python-modules/colanderalchemy/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/colanderalchemy/default.nix b/pkgs/development/python-modules/colanderalchemy/default.nix index 78f0f6fe371..686608445ab 100644 --- a/pkgs/development/python-modules/colanderalchemy/default.nix +++ b/pkgs/development/python-modules/colanderalchemy/default.nix @@ -30,6 +30,9 @@ buildPythonPackage rec { description = "Autogenerate Colander schemas based on SQLAlchemy models"; homepage = https://github.com/stefanofontanelli/ColanderAlchemy; license = licenses.mit; + # ColanderAlchemy's tests currently fail with colander >1.6.0 + # (see https://github.com/stefanofontanelli/ColanderAlchemy/issues/107) + broken = versionOlder "1.6.0" colander.version; }; }