about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-01-20 12:47:22 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-20 12:47:22 +0100
commite2f041a65bda0d78f76e4639cad03cd008fc8dfd (patch)
tree23ddbdf4f7b4960193e1e04772199c74326cbcc3 /pkgs/development/python-modules
parent29e96089491f706cb5f9e7083ef5b94422f174d3 (diff)
downloadnixlib-e2f041a65bda0d78f76e4639cad03cd008fc8dfd.tar
nixlib-e2f041a65bda0d78f76e4639cad03cd008fc8dfd.tar.gz
nixlib-e2f041a65bda0d78f76e4639cad03cd008fc8dfd.tar.bz2
nixlib-e2f041a65bda0d78f76e4639cad03cd008fc8dfd.tar.lz
nixlib-e2f041a65bda0d78f76e4639cad03cd008fc8dfd.tar.xz
nixlib-e2f041a65bda0d78f76e4639cad03cd008fc8dfd.tar.zst
nixlib-e2f041a65bda0d78f76e4639cad03cd008fc8dfd.zip
python.pkgs.PyLTI: 0.4.1 -> 0.5.1
Diffstat (limited to 'pkgs/development/python-modules')
-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 = {