Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python.pkgs.PyLTI: 0.4.1 -> 0.5.1

+4 -4
+4 -4
pkgs/development/python-modules/pylti/default.nix
··· 9 9 , httpretty 10 10 , oauthlib 11 11 , pyflakes 12 - , pytest_27 12 + , pytest 13 13 , pytestcache 14 14 , pytestcov 15 15 , covCore ··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "PyLTI"; 25 - version = "0.4.1"; 25 + version = "0.5.1"; 26 26 27 27 disabled = !isPy27; 28 28 ··· 33 33 34 34 propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ]; 35 35 checkInputs = [ 36 - flask httpretty oauthlib pyflakes pytest_27 pytestcache pytestcov covCore 36 + flask httpretty oauthlib pyflakes pytest pytestcache pytestcov covCore 37 37 pytestflakes pytestpep8 sphinx mock 38 38 ]; 39 39 40 40 src = fetchPypi { 41 41 inherit pname version; 42 - sha256 = "076llj10j85zw3zq2gygx2pcfqi9rgcld5m4vq1iai1fk15x60fz"; 42 + sha256 = "32093d961bf95e508bf27667289155da1e082ed9989bb84a76c54c6974c941e1"; 43 43 }; 44 44 45 45 meta = {