python.pkgs.routes: update dependencies

This commit is contained in:
Orivej Desh 2017-12-24 04:21:00 +00:00
parent 69daf1235b
commit c92e5f87ab

View File

@ -16289,14 +16289,15 @@ in {
routes = buildPythonPackage rec {
pname = "Routes";
version = "2.4.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1zamff3m0kc4vyfniyhxpkkcqv1rrgnmh37ykxv34nna1ws47vi6";
};
propagatedBuildInputs = with self; [ paste webtest repoze_lru ];
propagatedBuildInputs = with self; [ repoze_lru six webob ];
checkInputs = with self; [ coverage webtest ];
meta = {
description = "A Python re-implementation of the Rails routes system for mapping URLs to application actions";