1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
48 lines
964 B
Nix
48 lines
964 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
cryptography,
|
|
freezegun,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jwt";
|
|
version = "1.4.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GehirnInc";
|
|
repo = "python-jwt";
|
|
tag = "v${version}";
|
|
hash = "sha256-Cv64SmhkETm8mx1Kj5u0WZpCPjPNvC+KS6/XaMzxCho=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# pytest-flake8 is incompatible flake8 6.0.0 and currently unmaintained
|
|
substituteInPlace setup.cfg --replace "--flake8" ""
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ cryptography ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
freezegun
|
|
pytest-cov-stub
|
|
];
|
|
|
|
pythonImportsCheck = [ "jwt" ];
|
|
|
|
meta = {
|
|
description = "JSON Web Token library for Python 3";
|
|
homepage = "https://github.com/GehirnInc/python-jwt";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ thornycrackers ];
|
|
};
|
|
}
|