python3Packages.routes: fix tests

This commit is contained in:
Jonathan Ringer 2020-11-29 09:38:09 -08:00 committed by Frederik Rietdijk
parent c6ca81920e
commit 86eeb2bf88

View file

@ -3,6 +3,7 @@
, fetchPypi
, repoze_lru
, six
, soupsieve
, webob
, coverage
, webtest
@ -17,8 +18,12 @@ buildPythonPackage rec {
sha256 = "b6346459a15f0cbab01a45a90c3d25caf980d4733d628b4cc1952b865125d053";
};
propagatedBuildInputs = [ repoze_lru six webob ];
checkInputs = [ coverage webtest ];
propagatedBuildInputs = [ repoze_lru six soupsieve webob ];
# incompatible with latest soupsieve
doCheck = false;
checkInputs = [ coverage soupsieve webtest ];
pythonImportsCheck = [ "routes" ];
meta = with stdenv.lib; {
description = "A Python re-implementation of the Rails routes system for mapping URLs to application actions";