Skip to content

Commit

Permalink
python312Packages.primp: init at 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Oct 22, 2024
1 parent 2a95839 commit cf01acd
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
78 changes: 78 additions & 0 deletions pkgs/development/python-modules/primp/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
pytest,
runCommand,
boringssl,
libiconv,
SystemConfiguration,
autoPatchelfHook,
patchelf,
gcc-unwrapped,
}:

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.4";
pyproject = true;

src = fetchFromGitHub {
owner = "deedy5";
repo = "primp";
rev = "refs/tags/v${version}";
hash = "sha256-wCD99eEU4RW8kUJY72cXhJh5124PVd6kJt+HZjm/hFI=";
};

cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-iY6TSc7GU6OWVUpW6qpwH4g9/eGKhP/YZ5PQoO8NmVc=";
};

nativeBuildInputs = [
rustPlatform.bindgenHook
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];

# TODO: Can we improve this?
postInstall = ''
${lib.getExe patchelf} --add-rpath ${lib.getLib gcc-unwrapped.lib} --add-needed libstdc++.so.6 $out/lib/python3.12/site-packages/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 ];
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10140,6 +10140,10 @@ self: super: with self; {

ppk2-api = callPackage ../development/python-modules/ppk2-api { };

primp = callPackage ../development/python-modules/primp {
inherit (pkgs.darwin.apple_sdk.frameworks) SystemConfiguration;
};

print-color = callPackage ../development/python-modules/print-color { };

private-gpt = callPackage ../development/python-modules/private-gpt { };
Expand Down

0 comments on commit cf01acd

Please sign in to comment.