pythonPackages.txtorcon: mark broken for Python 2.7

This commit is contained in:
Robert Helgesson 2019-12-18 22:18:10 +01:00 committed by Jon
parent 9a30a244e0
commit 6003e2f765

View file

@ -1,6 +1,6 @@
{lib, buildPythonPackage, fetchPypi, isPy3k, incremental, ipaddress, twisted
, automat, zope_interface, idna, pyopenssl, service-identity, pytest, mock, lsof
, GeoIP}:
, GeoIP, isPy27}:
buildPythonPackage rec {
pname = "txtorcon";
@ -28,6 +28,9 @@ buildPythonPackage rec {
description = "Twisted-based Tor controller client, with state-tracking and configuration abstractions";
homepage = https://github.com/meejah/txtorcon;
maintainers = with lib.maintainers; [ jluttine ];
# Currently broken on Python 2.7. See
# https://github.com/NixOS/nixpkgs/issues/71826
broken = isPy27;
license = lib.licenses.mit;
};
}