nixpkgs/pkgs/development/python-modules/pyjwt/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

57 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cryptography
, pytestCheckHook
, pythonOlder
, sphinxHook
, sphinx-rtd-theme
, zope_interface
}:
buildPythonPackage rec {
pname = "pyjwt";
version = "2.6.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "PyJWT";
inherit version;
sha256 = "sha256-aShcfjH8RPaKH+swnpSODfUyWdV5KV5s/isXkjKfBf0=";
};
postPatch = ''
sed -i '/types-cryptography/d' setup.cfg
'';
outputs = [
"out"
"doc"
];
nativeBuildInputs = [
sphinxHook
sphinx-rtd-theme
zope_interface
];
passthru.optional-dependencies.crypto = [
cryptography
];
nativeCheckInputs = [
pytestCheckHook
] ++ (lib.flatten (lib.attrValues passthru.optional-dependencies));
pythonImportsCheck = [ "jwt" ];
meta = with lib; {
description = "JSON Web Token implementation in Python";
homepage = "https://github.com/jpadilla/pyjwt";
license = licenses.mit;
maintainers = with maintainers; [ prikhi ];
};
}