about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachetools
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-03-20 20:01:17 +0100
committerRobert Schütz <dev@schuetz-co.de>2021-03-20 20:01:17 +0100
commit4b9c3d465fe61f624d7c851f2a2ec1bcbd535b18 (patch)
tree942e3903ce839353ae21e5a6907fdeba49190199 /pkgs/development/python-modules/cachetools
parent97927ff28e5a270445fd110d209e3ee06283d068 (diff)
pythonPackages.cachetools: dropped support for Python 2.7
Diffstat (limited to 'pkgs/development/python-modules/cachetools')
-rw-r--r--pkgs/development/python-modules/cachetools/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cachetools/default.nix b/pkgs/development/python-modules/cachetools/default.nix
index 120fd5df124b7..a160c5ea94c54 100644
--- a/pkgs/development/python-modules/cachetools/default.nix
+++ b/pkgs/development/python-modules/cachetools/default.nix
@@ -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;