python3Packages.python-rapidjson: 1.20 -> 1.21

Diff: https://github.com/python-rapidjson/python-rapidjson/compare/refs/tags/v1.20...refs/tags/v1.21

Changelog: https://github.com/python-rapidjson/python-rapidjson/blob/refs/tags/v1.21/CHANGES.rst

Changed files
+6 -9
pkgs
development
python-modules
python-rapidjson
+6 -9
pkgs/development/python-modules/python-rapidjson/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
pythonOlder,
rapidjson,
pytestCheckHook,
pytz,
···
}:
buildPythonPackage rec {
-
version = "1.20";
+
version = "1.21";
pname = "python-rapidjson";
-
disabled = pythonOlder "3.8";
-
pyproject = true;
src = fetchFromGitHub {
owner = "python-rapidjson";
repo = "python-rapidjson";
tag = "v${version}";
-
hash = "sha256-xIswmHQMl5pAqvcTNqeuO3P6MynKt3ahzUgGQroaqmw=";
+
hash = "sha256-qpq7gNdWDSNTVTqV1rnRffap0VrlHOr4soAY/SXqd1k=";
};
patches = [
···
disabledTestPaths = [ "benchmarks" ];
-
meta = with lib; {
-
changelog = "https://github.com/python-rapidjson/python-rapidjson/blob/${src.rev}/CHANGES.rst";
+
meta = {
+
changelog = "https://github.com/python-rapidjson/python-rapidjson/blob/${src.tag}/CHANGES.rst";
homepage = "https://github.com/python-rapidjson/python-rapidjson";
description = "Python wrapper around rapidjson";
-
license = licenses.mit;
-
maintainers = with maintainers; [ dotlambda ];
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ dotlambda ];
};
}