mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
115 lines
3.3 KiB
Nix
115 lines
3.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
pytest,
|
|
runCommand,
|
|
boringssl,
|
|
libiconv,
|
|
gcc-unwrapped,
|
|
python,
|
|
fetchpatch,
|
|
}:
|
|
|
|
let
|
|
boringsslPatched = boringssl.overrideAttrs (oa: {
|
|
# boringssl source obtained from https://github.com/0x676e67/boring2/tree/1a0f1cd24e728aac100df68027c820f858199224/boring-sys/deps
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "boringssl";
|
|
rev = "44b3df6f03d85c901767250329c571db405122d5";
|
|
hash = "sha256-REELo7X9aFy2OHjubYLO1UQXLTgekD4QFd2vyFthIrg=";
|
|
};
|
|
modRoot = "./src";
|
|
patches = [
|
|
# A patch required to build boringssl compatible with `boring-sys2`.
|
|
# See https://github.com/0x676e67/boring2/blob/1a0f1cd24e728aac100df68027c820f858199224/boring-sys/build/main.rs#L486-L489
|
|
(fetchpatch {
|
|
name = "boringssl-44b3df6f03d85c901767250329c571db405122d5.patch";
|
|
url = "https://raw.githubusercontent.com/0x676e67/boring2/4edbff8cade24d5d83cc372c4502b59c5192b5a1/boring-sys/patches/boringssl-44b3df6f03d85c901767250329c571db405122d5.patch";
|
|
hash = "sha256-lM+2lLvfDHnxLl+OgZ6R8Y4Z6JfA9AiDqboT1mbxmao=";
|
|
})
|
|
];
|
|
|
|
# Remove bazel specific build file to make way for build directory
|
|
# This is a problem on Darwin because of case-insensitive filesystem
|
|
preBuild =
|
|
(lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
rm ../BUILD
|
|
'')
|
|
+ oa.preBuild;
|
|
|
|
env.NIX_CFLAGS_COMPILE =
|
|
oa.env.NIX_CFLAGS_COMPILE
|
|
+ " "
|
|
+ toString (
|
|
lib.optionals stdenv.cc.isGNU [
|
|
"-Wno-error=ignored-attributes"
|
|
]
|
|
);
|
|
|
|
vendorHash = "sha256-06MkjXl0DKFzIH/H+uT9kXsQdPq7qdZh2dlLW/YhJuk=";
|
|
});
|
|
# boring-sys expects the static libraries in build/ instead of lib/
|
|
boringssl-wrapper = runCommand "boringssl-wrapper" { } ''
|
|
mkdir $out
|
|
ln -s ${boringsslPatched.out}/lib $out/build
|
|
ln -s ${boringsslPatched.dev}/include $out/include
|
|
'';
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "primp";
|
|
version = "0.14.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deedy5";
|
|
repo = "primp";
|
|
tag = "v${version}";
|
|
hash = "sha256-LrSygeioJlccOH1oyagw02ankkZK+H6Mzrgy8tB83mo=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-iPf25DMGNHrWYByNTylB6bPpLfzs0ADwgkjfhVxiiXA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.bindgenHook
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
];
|
|
|
|
# TODO: Can we improve this?
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
patchelf --add-rpath ${lib.getLib gcc-unwrapped.lib} --add-needed libstdc++.so.6 $out/${python.sitePackages}/primp/primp.abi3.so
|
|
'';
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
env.BORING_BSSL_PATH = boringssl-wrapper;
|
|
env.BORING_BSSL_ASSUME_PATCHED = true;
|
|
|
|
optional-dependencies = {
|
|
dev = [ pytest ];
|
|
};
|
|
|
|
# Test use network
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "primp" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/deedy5/primp/releases/tag/${version}";
|
|
description = "Python Requests IMPersonate, the fastest Python HTTP client that can impersonate web browsers";
|
|
homepage = "https://github.com/deedy5/primp";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ drupol ];
|
|
};
|
|
}
|