dogpile.cache: add missing dep

This commit is contained in:
Peter Hoeg
2020-08-30 08:04:44 +08:00
committed by Jon
parent 5cfd8275a6
commit b10edc136e

View File

@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytestcov, mock, Mako, decorator
, pytest, pytestcov, mock, Mako, decorator, stevedore
}:
buildPythonPackage rec {
@@ -26,7 +26,7 @@ buildPythonPackage rec {
checkInputs = [ pytest pytestcov mock Mako ];
propagatedBuildInputs = [ decorator ];
propagatedBuildInputs = [ decorator stevedore ];
meta = with stdenv.lib; {
description = "A caching front-end based on the Dogpile lock";