about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pylti
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-11-29 07:21:00 -0500
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-03 16:50:41 +0100
commit7fe2539e1918adcb9e28f7ba36386902d29629fd (patch)
treea8d20582d725c6a79d7a592bf51abab5d00f1855 /pkgs/development/python-modules/pylti
parent147473511e59d8a2e320d7b62b7abdeb094ca2b8 (diff)
pythonPackages.PyLTI: refactor add chalice as dependency fix build
Diffstat (limited to 'pkgs/development/python-modules/pylti')
-rw-r--r--pkgs/development/python-modules/pylti/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pylti/default.nix b/pkgs/development/python-modules/pylti/default.nix
index 32cef1e5da8a1..40b639925a047 100644
--- a/pkgs/development/python-modules/pylti/default.nix
+++ b/pkgs/development/python-modules/pylti/default.nix
@@ -17,6 +17,7 @@
 , pytestpep8
 , sphinx
 , mock
+, chalice
 , isPy27
 }:
 
@@ -34,7 +35,7 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ];
   checkInputs = [
     flask httpretty oauthlib pyflakes pytest pytestcache pytestcov covCore
-    pytestflakes pytestpep8 sphinx mock
+    pytestflakes pytestpep8 sphinx mock chalice
   ];
 
   src = fetchPypi {
@@ -48,4 +49,4 @@ buildPythonPackage rec {
     license = lib.licenses.bsdOriginal;
     maintainers = with lib.maintainers; [ layus ];
   };
-}
\ No newline at end of file
+}