nixpkgs/pkgs/development/python-modules/pyjwt/default.nix
Tor Hedin Brønner 4361e50615 Revert "python: pyjwt: fix build"
This reverts commit bcf736b325.

28cdb6e841 fixed the issue with pytest-3.9.0.
2018-12-04 16:43:01 +01:00

32 lines
832 B
Nix

{ lib, buildPythonPackage, fetchPypi
, cryptography, ecdsa
, pytestrunner, pytestcov, pytest }:
buildPythonPackage rec {
pname = "PyJWT";
version = "1.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "4ee413b357d53fd3fb44704577afac88e72e878716116270d722723d65b42176";
};
propagatedBuildInputs = [ cryptography ecdsa ];
checkInputs = [ pytestrunner pytestcov pytest ];
# pytest 3.9.0 changed behavior of deprecated_call, see release notes
postPatch = ''
for x in tests/test_api_*py; do
substituteInPlace "$x" --replace AssertionError pytest.fail.Exception
done
'';
meta = with lib; {
description = "JSON Web Token implementation in Python";
homepage = https://github.com/jpadilla/pyjwt;
license = licenses.mit;
maintainers = with maintainers; [ prikhi ];
};
}