pythonPackages.cachetools: dropped support for Python 2.7

This commit is contained in:
Robert Schütz 2021-03-20 20:01:17 +01:00
parent 97927ff28e
commit 4b9c3d465f

View file

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, pytestCheckHook
}:
@ -8,6 +9,8 @@ buildPythonPackage rec {
pname = "cachetools";
version = "4.2.1";
disabled = isPy27;
src = fetchFromGitHub {
owner = "tkem";
repo = pname;