8 python3Packages.buildPythonApplication rec {
9 pname = "chia-dev-tools";
12 src = fetchFromGitHub {
13 owner = "Chia-Network";
16 hash = "sha256-qWWLQ+SkoRu5cLytwwrslqsKORy+4ebO8brULEFGaF0=";
21 src = ./fix-paths.patch;
27 substituteInPlace setup.py \
32 python3Packages.setuptools-scm
35 # give a hint to setuptools-scm on package version
36 SETUPTOOLS_SCM_PRETEND_VERSION = "v${version}";
38 propagatedBuildInputs = with python3Packages; [
41 pytest # required at runtime by the "test" command
46 nativeCheckInputs = with python3Packages; [
51 export HOME=$(mktemp -d)
53 postCheck = "unset HOME";
60 homepage = "https://www.chia.net/";
61 description = "Utility for developing in the Chia ecosystem: Chialisp functions, object inspection, RPC client and more";
62 license = with licenses; [ asl20 ];
63 maintainers = teams.chia.members;