Files
2026-04-15 08:54:16 +00:00

56 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
cargo,
rustPlatform,
rustc,
setuptools,
setuptools-rust,
}:
buildPythonPackage rec {
pname = "cryptg";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "cher-nov";
repo = "cryptg";
rev = "v${version}";
hash = "sha256-3vdZGtr4NTtba42jqklhEEMWqHgEct/0Rw0Krllgcn4=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
hash = "sha256-dnSxRHpjUIXgWScZS18ImxMOfhyq1iC2QPFs1h4l1AQ=";
};
build-system = [
setuptools
setuptools-rust
];
nativeBuildInputs = [
rustPlatform.cargoSetupHook
rustc
cargo
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "cryptg" ];
postPatch = ''
substituteInPlace pyproject.toml --replace-fail "setuptools[core]" "setuptools"
'';
meta = {
description = "Official Telethon extension to provide much faster cryptography for Telegram API requests";
homepage = "https://github.com/cher-nov/cryptg";
license = lib.licenses.cc0;
maintainers = with lib.maintainers; [ nickcao ];
};
}