blob: dad420df0e768e9a9bcca6cd05fcdd59d827778a (
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
|
{
lib,
buildPythonPackage,
runCommand,
fetchFromGitHub,
rustPlatform,
maturin,
protobuf_30,
}:
buildPythonPackage rec {
pname = "pyluwen";
version = "0.7.11";
pyproject = true;
src = fetchFromGitHub {
owner = "tenstorrent";
repo = "luwen";
tag = "v${version}";
hash = "sha256-eQpKEeuy0mVrmu8ssAOWBcXi7zutStu+RbZOEF/IJ98=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
hash = "sha256-INzF8ORkrmPQMJbGSNm5QkfMOgE+HJ3taU1EZ9i+HJg=";
};
sourceRoot = "${src.name}/crates/${pname}";
prePatch = ''
chmod -R u+w ../../
cd ../../
'';
postPatch = ''
cd ../$sourceRoot
cp --no-preserve=ownership,mode ../../Cargo.lock .
sed -i '0,/version = /{s/version = "*.*.*"/version = "${version}"/g}' Cargo.toml
'';
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
protobuf_30
];
build-system = [ maturin ];
meta = {
description = "Tenstorrent system interface library";
homepage = "https://github.com/tenstorrent/luwen";
maintainers = with lib.maintainers; [ RossComputerGuy ];
license = with lib.licenses; [ asl20 ];
};
}
|