python: pyjwt: fix build

This commit is contained in:
Franz Pletz 2018-11-22 22:26:36 +01:00
parent eb2d56cb27
commit bcf736b325
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi
, cryptography, ecdsa
, pytestrunner, pytestcov, pytest }:
, pytestrunner, pytestcov, pytest_37 }:
buildPythonPackage rec {
pname = "PyJWT";
@ -13,7 +13,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ cryptography ecdsa ];
checkInputs = [ pytestrunner pytestcov pytest ];
checkInputs = [ pytestrunner pytestcov pytest_37 ];
meta = with lib; {
description = "JSON Web Token implementation in Python";