about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachetools
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-01-05 15:36:41 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-01-05 15:41:35 +0100
commitdc911b165b57d751c1d5ed3ff9cb88ba7fb32916 (patch)
tree933f657042582fb96c02653d05476e3ddafdd83b /pkgs/development/python-modules/cachetools
parentf2a218df594d96d727980f58b5a0b0260bbd5a17 (diff)
Revert "python-google_auth: build this package with on older version of cachetools"
This reverts commit 177ab0e01e4183bf47dc3805d148970409cce23d.
Diffstat (limited to 'pkgs/development/python-modules/cachetools')
-rw-r--r--pkgs/development/python-modules/cachetools/3.1.1.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/cachetools/3.1.1.nix b/pkgs/development/python-modules/cachetools/3.1.1.nix
deleted file mode 100644
index 51bf0e753a912..0000000000000
--- a/pkgs/development/python-modules/cachetools/3.1.1.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi }:
-
-buildPythonPackage rec {
-  pname = "cachetools";
-  version = "3.1.1";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "8ea2d3ce97850f31e4a08b0e2b5e6c34997d7216a9d2c98e0f3978630d4da69a";
-  };
-
-  meta = with stdenv.lib; {
-    description = "Extensible memoizing collections and decorators";
-    homepage = "https://github.com/tkem/cachetools";
-    license = licenses.mit;
-  };
-}