blob: 64e17f626b318cb6a72f2f9b1100dbab809cbda0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
libiconv,
numpy,
pytestCheckHook,
rustPlatform,
nix-update-script,
}:
buildPythonPackage rec {
pname = "blake3";
version = "1.0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "oconnor663";
repo = "blake3-py";
tag = version;
hash = "sha256-gwPGSah9qzApDwsBNABRLPZGrpaO3WArHoK6Jj6WJzo=";
};
postPatch = ''
ln -s '${./Cargo.lock}' Cargo.lock
'';
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
};
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
libiconv
];
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
nativeCheckInputs = [
pytestCheckHook
numpy
];
pythonImportsCheck = [ "blake3" ];
passthru.updateScript = nix-update-script {
extraArgs = [
"--generate-lockfile"
];
};
meta = {
description = "Python bindings for the BLAKE3 cryptographic hash function";
homepage = "https://github.com/oconnor663/blake3-py";
changelog = "https://github.com/oconnor663/blake3-py/releases/tag/${version}";
license = with lib.licenses; [
cc0
asl20
];
maintainers = with lib.maintainers; [ Luflosi ];
};
}
|