pythonPackages.webcolors: disable python2, abandoned upstream

This commit is contained in:
Jonathan Ringer 2020-06-25 20:50:09 -07:00 committed by Jon
parent 56f8f6f31f
commit 990d80657d

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, python , python
, six , six
}: }:
@ -8,6 +9,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "webcolors"; pname = "webcolors";
version = "1.11.1"; version = "1.11.1";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;