nixpkgs/pkgs/applications/blockchains/chia/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

103 lines
2.1 KiB
Nix
Raw Normal View History

2021-06-09 21:00:09 +00:00
{ lib
, cacert
2021-06-09 21:00:09 +00:00
, fetchFromGitHub
, python3Packages
}:
2021-05-09 10:26:25 +00:00
2021-08-28 14:32:42 +00:00
let chia = python3Packages.buildPythonApplication rec {
2021-05-09 10:26:25 +00:00
pname = "chia";
2022-07-26 19:23:25 +00:00
version = "1.5.0";
2021-05-09 10:26:25 +00:00
src = fetchFromGitHub {
owner = "Chia-Network";
repo = "chia-blockchain";
rev = version;
fetchSubmodules = true;
2022-07-26 19:23:25 +00:00
hash = "sha256-OlaAnUy16QBff81XMoYQaZA0wKnsr+/3XEQLBP8IMug=";
2021-05-09 10:26:25 +00:00
};
2022-07-27 14:50:24 +00:00
patches = [
# chia tries to put lock files in the python modules directory
./dont_lock_in_store.patch
];
2021-09-12 13:42:03 +00:00
postPatch = ''
substituteInPlace setup.py \
--replace "==" ">="
cp ${cacert}/etc/ssl/certs/ca-bundle.crt mozilla-ca/cacert.pem
2021-09-12 13:42:03 +00:00
'';
2021-05-09 10:26:25 +00:00
nativeBuildInputs = [
python3Packages.setuptools-scm
];
# give a hint to setuptools-scm on package version
2021-05-09 10:26:25 +00:00
SETUPTOOLS_SCM_PRETEND_VERSION = "v${version}";
propagatedBuildInputs = with python3Packages; [
2022-02-11 15:46:15 +00:00
aiofiles
2021-05-09 10:26:25 +00:00
aiohttp
aiosqlite
bitstring
blspy
chiapos
chiavdf
chiabip158
2022-07-26 19:23:25 +00:00
chia-rs
2021-05-09 10:26:25 +00:00
click
clvm
clvm-rs
clvm-tools
2022-07-26 19:23:25 +00:00
clvm-tools-rs
2021-08-27 09:45:20 +00:00
colorama
2021-05-09 10:26:25 +00:00
colorlog
concurrent-log-handler
cryptography
2022-02-11 15:46:15 +00:00
dnslib
2021-11-05 11:18:13 +00:00
dnspythonchia
2021-08-27 09:45:20 +00:00
fasteners
2022-03-17 08:36:52 +00:00
filelock
2021-05-09 10:26:25 +00:00
keyrings-cryptfile
pyyaml
setproctitle
setuptools # needs pkg_resources at runtime
sortedcontainers
2021-08-27 09:45:20 +00:00
watchdog
2021-05-09 10:26:25 +00:00
websockets
2022-02-11 15:46:15 +00:00
zstd
2021-05-09 10:26:25 +00:00
];
2021-06-09 21:00:09 +00:00
checkInputs = with python3Packages; [
pytestCheckHook
2021-05-09 10:26:25 +00:00
];
2021-08-28 14:32:42 +00:00
# Testsuite is expensive and non-deterministic, so it is available in
# passthru.tests instead.
doCheck = false;
2021-05-09 10:26:25 +00:00
disabledTests = [
"test_spend_through_n"
"test_spend_zero_coin"
2021-08-27 09:45:20 +00:00
"test_default_cached_master_passphrase"
"test_using_legacy_keyring"
2021-05-09 10:26:25 +00:00
];
preCheck = ''
export HOME=`mktemp -d`
'';
2021-08-28 14:32:42 +00:00
passthru.tests = {
chiaWithTests = chia.overrideAttrs (_: { doCheck = true; });
};
2021-05-09 10:26:25 +00:00
meta = with lib; {
homepage = "https://www.chia.net/";
description = "Chia is a modern cryptocurrency built from scratch, designed to be efficient, decentralized, and secure.";
license = with licenses; [ asl20 ];
maintainers = teams.chia.members;
platforms = platforms.all;
};
2021-08-28 14:32:42 +00:00
};
in chia