Files
nixpkgs/pkgs/development/python-modules/electrum-ecc/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

56 lines
1.3 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
setuptools,
pkgs,
pytestCheckHook,
}:
let
libsecp256k1_name =
if stdenv.hostPlatform.isLinux then
"libsecp256k1.so.{v}"
else if stdenv.hostPlatform.isDarwin then
"libsecp256k1.{v}.dylib"
else
"libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}";
in
buildPythonPackage rec {
pname = "electrum-ecc";
version = "0.0.5";
pyproject = true;
build-system = [ setuptools ];
src = fetchPypi {
pname = "electrum_ecc";
inherit version;
hash = "sha256-9zO4WWoPeyXINx0Ir2Hvece4cdW0DwWluV0tBesvt9I=";
};
env = {
# Prevent compilation of the C extension as we use the system library instead.
ELECTRUM_ECC_DONT_COMPILE = "1";
};
postPatch = ''
# remove bundled libsecp256k1
rm -rf libsecp256k1/
# use the system library instead
substituteInPlace ./src/electrum_ecc/ecc_fast.py \
--replace-fail ${libsecp256k1_name} ${pkgs.secp256k1}/lib/libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "electrum_ecc" ];
meta = {
description = "Pure python ctypes wrapper for libsecp256k1";
homepage = "https://github.com/spesmilo/electrum-ecc";
license = lib.licenses.mit;
maintainers = [ ];
};
}