python2Packages.urwid: disable for python2

This commit is contained in:
Jonathan Ringer 2020-08-16 19:29:24 -07:00
parent 466a281408
commit c6c14b114d
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,8 +1,9 @@
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:
{ stdenv, buildPythonPackage, fetchPypi, isPy27, glibcLocales }:
buildPythonPackage rec {
pname = "urwid";
version = "2.1.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;