python.pkgs.cachetools_1: remove

It is not used anywhere and was pointing to version 2.1.0 anyway.
This commit is contained in:
Robert Schütz
2019-01-21 17:54:31 +01:00
parent 2dc2a8e54e
commit 862e16117c
2 changed files with 1 additions and 19 deletions

View File

@@ -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;
};
}