python3Packages.backports-zoneinfo: disable for python3.9 and newer

This commit is contained in:
Martin Weinelt 2022-03-08 17:24:15 +01:00
parent 615f756cd2
commit 2ea8e712b7

View file

@ -1,4 +1,5 @@
{ lib, buildPythonPackage, fetchFromGitHub
, pythonAtLeast
, pythonOlder
, python
, substituteAll
@ -12,6 +13,8 @@ buildPythonPackage rec {
pname = "backports-zoneinfo";
version = "0.2.1";
disabled = pythonAtLeast "3.9";
src = fetchFromGitHub {
owner = "pganssle";
repo = "zoneinfo";