2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub
|
2018-12-03 14:01:09 +00:00
|
|
|
, future, six, ecdsa, rsa
|
2020-06-11 09:39:36 +01:00
|
|
|
, pycrypto, pytestcov, pytestrunner, cryptography
|
|
|
|
, pytestCheckHook
|
2017-03-15 23:43:58 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "python-jose";
|
2020-10-28 18:21:49 +00:00
|
|
|
version = "3.2.0";
|
2018-04-07 14:13:05 +01:00
|
|
|
|
2017-03-15 23:43:58 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mpdavis";
|
|
|
|
repo = "python-jose";
|
2018-12-03 14:01:09 +00:00
|
|
|
rev = version;
|
2020-10-28 18:21:49 +00:00
|
|
|
sha256 = "cSPIZrps0xFd4pPcQ4w/jFWOk2XYgd3mtE/sDzlytvY=";
|
2017-03-15 23:43:58 +00:00
|
|
|
};
|
|
|
|
|
2018-04-07 14:13:05 +01:00
|
|
|
checkInputs = [
|
2018-12-03 14:01:09 +00:00
|
|
|
pycrypto
|
2020-06-11 09:39:36 +01:00
|
|
|
pytestCheckHook
|
2018-12-03 14:01:09 +00:00
|
|
|
pytestcov
|
|
|
|
pytestrunner
|
2018-08-30 17:39:11 +01:00
|
|
|
cryptography # optional dependency, but needed in tests
|
2017-03-15 23:43:58 +00:00
|
|
|
];
|
2018-04-07 14:13:05 +01:00
|
|
|
|
2020-10-28 18:21:49 +00:00
|
|
|
# relax ecdsa deps
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace 'ecdsa<0.15' 'ecdsa' \
|
|
|
|
--replace 'ecdsa <0.15' 'ecdsa'
|
|
|
|
'';
|
|
|
|
|
2020-06-11 09:39:36 +01:00
|
|
|
disabledTests = [
|
|
|
|
# https://github.com/mpdavis/python-jose/issues/176
|
|
|
|
"test_key_too_short"
|
|
|
|
];
|
2019-08-18 09:47:55 +01:00
|
|
|
|
2018-12-03 14:01:09 +00:00
|
|
|
propagatedBuildInputs = [ future six ecdsa rsa ];
|
2018-04-07 14:13:05 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mpdavis/python-jose";
|
2017-03-15 23:43:58 +00:00
|
|
|
description = "A JOSE implementation in Python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.jhhuh ];
|
|
|
|
};
|
|
|
|
}
|