about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/development/python-modules/pylti/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pylti/default.nix b/pkgs/development/python-modules/pylti/default.nix
index 751d9e300e51..8d61c2bf9e98 100644
--- a/pkgs/development/python-modules/pylti/default.nix
+++ b/pkgs/development/python-modules/pylti/default.nix
@@ -9,7 +9,7 @@
 , httpretty
 , oauthlib
 , pyflakes
-, pytest_27
+, pytest
 , pytestcache
 , pytestcov
 , covCore
@@ -22,7 +22,7 @@
 
 buildPythonPackage rec {
   pname = "PyLTI";
-  version = "0.4.1";
+  version = "0.5.1";
 
   disabled = !isPy27;
 
@@ -33,13 +33,13 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ];
   checkInputs = [
-    flask httpretty oauthlib pyflakes pytest_27 pytestcache pytestcov covCore
+    flask httpretty oauthlib pyflakes pytest pytestcache pytestcov covCore
     pytestflakes pytestpep8 sphinx mock
   ];
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "076llj10j85zw3zq2gygx2pcfqi9rgcld5m4vq1iai1fk15x60fz";
+    sha256 = "32093d961bf95e508bf27667289155da1e082ed9989bb84a76c54c6974c941e1";
   };
 
   meta = {