From c77bd38764f829c3d0be920a1d8604cc3e9ada99 Mon Sep 17 00:00:00 2001 From: Benjamin Hipple Date: Sun, 29 Mar 2020 18:42:39 -0400 Subject: [PATCH] python27Packages.python-otr: mark as broken See inline comment for details. https://hydra.nixos.org/build/115510612 CC @NixOS/nixos-release-managers ZHF: #80379 --- pkgs/development/python-modules/python-otr/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-otr/default.nix b/pkgs/development/python-modules/python-otr/default.nix index 2b08bbffa450..d83d25972450 100644 --- a/pkgs/development/python-modules/python-otr/default.nix +++ b/pkgs/development/python-modules/python-otr/default.nix @@ -24,10 +24,13 @@ buildPythonPackage rec { meta = with stdenv.lib; { description = "A pure python implementation of OTR"; - homepage = https://github.com/AGProjects/otr; + homepage = "https://github.com/AGProjects/python-otr"; license = licenses.lgpl21Plus; platforms = platforms.linux; maintainers = with maintainers; [ edwtjo ]; + # The package itself does not support python3, and its transitive + # dependencies rely on namespace package support that does not work in + # Nix's python2 infra. See #74619 for details. + broken = true; }; - }