pythonPackages.cachetools: dropped support for Python 2.7
This commit is contained in:
parent
97927ff28e
commit
4b9c3d465f
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue