78 lines
1.8 KiB
Nix
78 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
pytest,
|
|
runCommand,
|
|
boringssl,
|
|
libiconv,
|
|
SystemConfiguration,
|
|
patchelf,
|
|
gcc-unwrapped,
|
|
python,
|
|
}:
|
|
|
|
let
|
|
# boring-sys expects the static libraries in build/ instead of lib/
|
|
boringssl-wrapper = runCommand "boringssl-wrapper" { } ''
|
|
mkdir $out
|
|
cd $out
|
|
ln -s ${boringssl.out}/lib build
|
|
ln -s ${boringssl.dev}/include include
|
|
'';
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "primp";
|
|
version = "0.6.5";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deedy5";
|
|
repo = "primp";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dexJdeNGpRsPLk8b/gNeQc1dsQLOiXNL5zgDEN9qHfQ=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-0mkrs50l0JEUH1WsM/Bp8AblCy6nkuohZKDsp6OVQpM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.bindgenHook
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
];
|
|
|
|
# TODO: Can we improve this?
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
${lib.getExe 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
|
|
SystemConfiguration
|
|
];
|
|
|
|
env.BORING_BSSL_PATH = boringssl-wrapper;
|
|
|
|
optional-dependencies = {
|
|
dev = [ pytest ];
|
|
};
|
|
|
|
# Test use network
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "primp" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/deedy5/primp/releases/tag/${version}";
|
|
description = "PRIMP (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 ];
|
|
};
|
|
}
|