pythonPackages.fonttools: python2 no longer supported

This commit is contained in:
Jonathan Ringer 2019-12-22 15:47:49 -08:00 committed by Frederik Rietdijk
parent 3b9951127f
commit 7f223d2f7a

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, numpy , numpy
, pytest , pytest
, pytestrunner , pytestrunner
@ -10,6 +11,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "fonttools"; pname = "fonttools";
version = "4.2.2"; version = "4.2.2";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;