python310Packages.python-rapidjson: unvendor rapidjson

This commit is contained in:
Robert Schütz 2022-06-11 05:03:47 +00:00
parent 92775fc62f
commit 11cc18cddd

View file

@ -1,37 +1,58 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub
, fetchpatch
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, pytest , rapidjson
, pytestCheckHook
, pytz , pytz
, glibcLocales , glibcLocales
}: }:
buildPythonPackage rec { let
rapidjson' = rapidjson.overrideAttrs (old: {
version = "unstable-2022-05-24";
src = fetchFromGitHub {
owner = "Tencent";
repo = "rapidjson";
rev = "232389d4f1012dddec4ef84861face2d2ba85709";
hash = "sha256-RLvDcInUa8E8DRA4U/oXEE8+TZ0SDXXDU/oWvpfDWjw=";
};
patches = [
(fetchpatch {
url = "https://git.alpinelinux.org/aports/plain/community/rapidjson/do-not-include-gtest-src-dir.patch";
hash = "sha256-BjSZEwfCXA/9V+kxQ/2JPWbc26jQn35CfN8+8NW24s4=";
})
];
});
in buildPythonPackage rec {
version = "1.6"; version = "1.6";
pname = "python-rapidjson"; pname = "python-rapidjson";
disabled = pythonOlder "3.4"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-GJzxqWv5/NhtADYPFa12qDzgiJuK6NHLD9srKZXlocg="; sha256 = "sha256-GJzxqWv5/NhtADYPFa12qDzgiJuK6NHLD9srKZXlocg=";
}; };
LC_ALL="en_US.utf-8"; setupPyBuildFlags = [
buildInputs = [ glibcLocales ]; "--rj-include-dir=${lib.getDev rapidjson'}/include"
];
# buildInputs = [ ]; checkInputs = [
checkInputs = [ pytest pytz ]; pytestCheckHook
# propagatedBuildInputs = [ ]; pytz
];
checkPhase = '' disabledTestPaths = [
pytest tests "benchmarks"
''; ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/python-rapidjson/python-rapidjson"; homepage = "https://github.com/python-rapidjson/python-rapidjson";
description = "Python wrapper around rapidjson "; description = "Python wrapper around rapidjson";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc dotlambda ];
}; };
} }