python3Packages.dogpile-cache: disable <python3.6

This commit is contained in:
Jonathan Ringer
2020-08-30 09:11:02 +02:00
committed by Frederik Rietdijk
parent a8b6169aa2
commit ba537f97a7
@@ -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;