summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachetools
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-21 17:54:31 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-21 17:54:31 +0100
commit862e16117c1d8d6b6ed35c55a8665074c7cd1669 (patch)
treef96c0f1ac1ab6dac06dd3e4bde1ac3ee9e3e0dfa /pkgs/development/python-modules/cachetools
parent2dc2a8e54e6a387a8570b07daadbe44ff3000cfb (diff)
downloadnixpkgs-862e16117c1d8d6b6ed35c55a8665074c7cd1669.tar
nixpkgs-862e16117c1d8d6b6ed35c55a8665074c7cd1669.tar.gz
nixpkgs-862e16117c1d8d6b6ed35c55a8665074c7cd1669.tar.bz2
nixpkgs-862e16117c1d8d6b6ed35c55a8665074c7cd1669.tar.lz
nixpkgs-862e16117c1d8d6b6ed35c55a8665074c7cd1669.tar.xz
nixpkgs-862e16117c1d8d6b6ed35c55a8665074c7cd1669.tar.zst
nixpkgs-862e16117c1d8d6b6ed35c55a8665074c7cd1669.zip
python.pkgs.cachetools_1: remove
It is not used anywhere and was pointing to version 2.1.0 anyway.
Diffstat (limited to 'pkgs/development/python-modules/cachetools')
-rw-r--r--pkgs/development/python-modules/cachetools/1.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/cachetools/1.nix b/pkgs/development/python-modules/cachetools/1.nix
deleted file mode 100644
index 05f3afe758a..00000000000
--- a/pkgs/development/python-modules/cachetools/1.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, isPyPy }:
-
-buildPythonPackage rec {
-  pname = "cachetools";
-  version = "2.1.0";
-  disabled = isPyPy;  # a test fails
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "90f1d559512fc073483fe573ef5ceb39bf6ad3d39edc98dc55178a2b2b176fa3";
-  };
-
-  meta = with stdenv.lib; {
-    homepage = "https://github.com/tkem/cachetools";
-    license = licenses.mit;
-  };
-}