pythonPackages.PyLTI: refactor add chalice as dependency fix build

This commit is contained in:
Chris Ostrouchov 2018-11-29 07:21:00 -05:00 committed by Frederik Rietdijk
parent 147473511e
commit 7fe2539e19
1 changed files with 3 additions and 2 deletions

View File

@ -17,6 +17,7 @@
, pytestpep8 , pytestpep8
, sphinx , sphinx
, mock , mock
, chalice
, isPy27 , isPy27
}: }:
@ -34,7 +35,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ]; propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ];
checkInputs = [ checkInputs = [
flask httpretty oauthlib pyflakes pytest pytestcache pytestcov covCore flask httpretty oauthlib pyflakes pytest pytestcache pytestcov covCore
pytestflakes pytestpep8 sphinx mock pytestflakes pytestpep8 sphinx mock chalice
]; ];
src = fetchPypi { src = fetchPypi {
@ -48,4 +49,4 @@ buildPythonPackage rec {
license = lib.licenses.bsdOriginal; license = lib.licenses.bsdOriginal;
maintainers = with lib.maintainers; [ layus ]; maintainers = with lib.maintainers; [ layus ];
}; };
} }