python2Packages.flask-caching: disabled python2, abandon

This commit is contained in:
Jonathan Ringer 2020-06-20 09:11:55 -07:00 committed by Jon
parent 734f1dea8b
commit 0458e8862e

View file

@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchPypi, flask, pytest, pytestcov, pytest-xprocess, pytestcache }:
{ lib, buildPythonPackage, fetchPypi, isPy27, flask, pytest, pytestcov, pytest-xprocess, pytestcache }:
buildPythonPackage rec {
pname = "Flask-Caching";
version = "1.9.0";
disabled = isPy27; # invalid python2 syntax
src = fetchPypi {
inherit pname version;