python3Packages.dogpile-cache: disable <python3.6

This commit is contained in:
Jonathan Ringer 2020-08-29 11:00:46 -07:00 committed by Frederik Rietdijk
parent a8b6169aa2
commit ba537f97a7

View File

@ -1,10 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder
, pytest, pytestcov, mock, Mako, decorator
}:
buildPythonPackage rec {
pname = "dogpile.cache";
version = "1.0.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;