pythonPackages.timezonefinder: disable on Python 2

This commit is contained in:
Wael M. Nasreddine 2020-01-06 08:10:03 -08:00 committed by Jon
parent e08c77af7a
commit 0e4457ce93

View File

@ -1,6 +1,7 @@
{ buildPythonPackage { buildPythonPackage
, lib , lib
, fetchPypi , fetchPypi
, isPy27
, numba , numba
, numpy , numpy
}: }:
@ -9,6 +10,8 @@ buildPythonPackage rec {
pname = "timezonefinder"; pname = "timezonefinder";
version = "4.2.0"; version = "4.2.0";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0q8nd279labn03dz17s4xrglk1d31q9y8wcx99l51i5cxx53zsap"; sha256 = "0q8nd279labn03dz17s4xrglk1d31q9y8wcx99l51i5cxx53zsap";