mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, rustPlatform
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "chia-rs";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chia-network";
|
|
repo = "chia_rs";
|
|
rev = version;
|
|
hash = "sha256-kjURkzynrrb5iD5s77Q3nETt71SCGGazm/2lt9HS5JU=";
|
|
};
|
|
|
|
patches = [
|
|
# undo a hack from upstream that confuses our build hook
|
|
./fix-build.patch
|
|
];
|
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
postPatch = ''
|
|
cp ${./Cargo.lock} Cargo.lock
|
|
'';
|
|
|
|
nativeBuildInputs = with rustPlatform; [
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
];
|
|
|
|
preBuild = ''
|
|
# avoid ENOENT in maturinBuildHook
|
|
touch wheel/Cargo.lock
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
buildAndTestSubdir = "wheel";
|
|
|
|
meta = with lib; {
|
|
description = "Rust crate & wheel with consensus code";
|
|
homepage = "https://github.com/Chia-Network/chia_rs/";
|
|
license = licenses.asl20;
|
|
maintainers = teams.chia.members;
|
|
};
|
|
}
|